Mercurial > hg > ltpda
view m-toolbox/m/gui/ltpdv/callbacks/ltpdv_server_import.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_server_import(varargin) % Handles myh = varargin{1}; mainfig = varargin{end}; a = ltpdv_server_get_data(mainfig); % Add objects to the object list % Get current objects objs = getappdata(mainfig, 'LTPDAobjects'); % Add these new ones for j=1:numel(a) objs = [objs {a(j)}]; end % Refresh object list setappdata(mainfig, 'LTPDAobjects', objs); ltpdv_refresh_object_list(mainfig);