Mercurial > hg > ltpda
comparison m-toolbox/classes/@repogui/cb_refreshObjsList.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f0afece42f48 |
---|---|
1 % CB_REFRESHOBJSLIST callback to refresh the list of objects. | |
2 % | |
3 % M Hewitson | |
4 % | |
5 % $Id: cb_refreshObjsList.m,v 1.1 2009/02/03 08:15:30 hewitson Exp $ | |
6 % | |
7 function cb_refreshObjsList(varargin) | |
8 | |
9 % get a list of objects | |
10 objs = repogui.getWorkspaceObjs(); | |
11 | |
12 % set list | |
13 setWorkspaceObjsList(varargin{end}, objs); | |
14 | |
15 end | |
16 |