view m-toolbox/classes/@repogui2/cb_refreshObjsList.m @ 18:947e2ff4b1b9 database-connection-manager

Update plist.FROM_REPOSITORY_PLIST and plist.TO_REPOSITORY_PLIST
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Mon, 05 Dec 2011 16:20:06 +0100
parents f0afece42f48
children
line wrap: on
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