view m-toolbox/classes/@repogui/cb_refreshObjsList.m @ 37:a4b7ceae0403
database-connection-manager
Show backtrace on unit test errors
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05)
parents
f0afece42f48
children
line source
+ − % CB_REFRESHOBJSLIST callback to refresh the list of objects.
+ − %
+ − % M Hewitson
+ − %
+ − % $Id: cb_refreshObjsList.m,v 1.1 2009/02/03 08:15:30 hewitson Exp $
+ − %
+ − function cb_refreshObjsList(varargin)
+ −
+ − % get a list of objects
+ − objs = repogui.getWorkspaceObjs();
+ −
+ − % set list
+ − setWorkspaceObjsList(varargin{end}, objs);
+ −
+ − end
+ −