Mercurial > hg > ltpda
annotate m-toolbox/classes/@repogui2/cb_refreshObjsList.m @ 42:f90d4f666cc7 database-connection-manager
Cleanup
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Mon, 05 Dec 2011 18:04:34 +0100 |
parents | f0afece42f48 |
children |
rev | line source |
---|---|
0 | 1 % CB_REFRESHOBJSLIST callback to refresh the list of objects. |
2 % | |
3 % M Hewitson | |
4 % | |
5 % $Id: cb_refreshObjsList.m,v 1.1 2008/09/22 14:28:56 hewitson Exp $ | |
6 % | |
7 function cb_refreshObjsList(varargin) | |
8 | |
9 % get a list of objects | |
10 objs = repogui2.getWorkspaceObjs(); | |
11 | |
12 % set list | |
13 setWorkspaceObjsList(varargin{end}, objs); | |
14 | |
15 end | |
16 |