view m-toolbox/classes/@repogui/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
parents f0afece42f48
children
line wrap: on
line source

% CB_MAINFIGCLOSE close callback for repogui.
% 
% M Hewitson 22-09-08
% 
% $Id: cb_mainfigClose.m,v 1.3 2011/04/08 08:56:26 hewitson Exp $
% 

function cb_mainfigClose(varargin)
  
  mainfig = varargin{end};
  
  if ~isempty(mainfig) && isa(mainfig.connection, 'database')
    disp('* closing open database connection');
    close(mainfig.connection);
  end
  
%   disp('* Goodbye from the LTPDA Repository Interface *')
  delete(mainfig.handle)
  delete(mainfig)
  
  % delete 'ans' variable associated with this repogui
  evalin('base', 'if exist(''ans'', ''var'') && isa(ans, ''repogui''), clear(''ans''); end');
    
end