view m-toolbox/classes/@constructor/cb_mainfigClose.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_MAINFIGCLOSE close callback for repogui2.
%
% M Hewitson 22-09-08
%
% $Id: cb_mainfigClose.m,v 1.1 2008/12/02 08:02:53 hewitson Exp $
%
function cb_mainfigClose(varargin)
mainfig = varargin{end};
disp('* Goodbye from the LTPDA Constructor Helper *')
delete(mainfig.handle)
delete(mainfig)
% delete 'ans' variable associated with this repogui
evalin('base', 'if exist(''ans'', ''var'') && isa(ans, ''sigBuilder''), clear(''ans''); end');
end