view m-toolbox/classes/@repogui2/cb_refreshObjsList.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 (2011-12-07)
parents
f0afece42f48
children
line source
+ − % CB_REFRESHOBJSLIST callback to refresh the list of objects.
+ − %
+ − % M Hewitson
+ − %
+ − % $Id: cb_refreshObjsList.m,v 1.1 2008/09/22 14:28:56 hewitson Exp $
+ − %
+ − function cb_refreshObjsList(varargin)
+ −
+ − % get a list of objects
+ − objs = repogui2.getWorkspaceObjs();
+ −
+ − % set list
+ − setWorkspaceObjsList(varargin{end}, objs);
+ −
+ − end
+ −