Mercurial > hg > ltpda
view m-toolbox/m/gui/ltpdv/callbacks/ltpdv_objectList_edit.m @ 52:daf4eab1a51e database-connection-manager tip
Fix. Default password should be [] not an empty string
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 07 Dec 2011 17:29:47 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
function ltpdv_objectList_edit(varargin) % LTPDV_OBJECTLIST_EDIT activates when the user changes the content of a % cell. % % M Hewitson 22-04-08 % % $Id: ltpdv_objectList_edit.m,v 1.2 2008/06/18 15:07:35 hewitson Exp $ % % Handles myh = varargin{1}; mainfig = varargin{end}; % Structure of selection details sel = varargin{2}; % Get selected rows rows = unique(sel.Indices(:,1)); % Get current object list objs = getappdata(mainfig, 'LTPDAobjects'); objs{rows} = objs{rows}.setName(sel.NewData); % Set objects back setappdata(mainfig, 'LTPDAobjects', objs); % Refresh object list ltpdv_refresh_object_list(mainfig); % END