view m-toolbox/classes/@LTPDAprefs/cb_addExtensionPath.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_addExtensionPath callback for adding a extensions path
%
% Parameters:
% first - LTPDAprefs object
% second - Source object (here: JButton)
% third - Event Object (here: ActionEvent)
%
% Version:
% $Id: cb_addExtensionPath.m,v 1.1 2010/11/29 19:34:25 ingo Exp $
%
function cb_addExtensionPath(varargin)
disp('adding path');
ltpdaPrefs = varargin{1};
newPath = char(ltpdaPrefs.gui.getPrefsTabPane().getExtensionsPanel().getNewPathTextField().getText());
if ~isempty(newPath)
utils.helper.installExtensionsForDir(newPath);
end
end