view m-toolbox/classes/@repogui/cb_condPlusBtn.m @ 31:a26669b59d7e
database-connection-manager
Update LTPDAworkbench
author |
Daniele Nicolodi <nicolodi@science.unitn.it> |
date |
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05) |
parents |
f0afece42f48 |
children |
|
line source
% CB_CONDPLUSBTN add a condition to the query panel
%
% M Hewitson
%
% $Id: cb_condPlusBtn.m,v 1.2 2011/04/08 08:56:26 hewitson Exp $
%
function cb_condPlusBtn(varargin)
myh = varargin{1};
mainfig = varargin{end};
mainfig.Nconditions = mainfig.Nconditions + 1;
if mainfig.Nconditions > 5
mainfig.Nconditions = 5;
warning('!!! Can''t have more than 5 conditions.');
end
buildConditions(mainfig);
end