view m-toolbox/classes/@repogui/cb_condSubtractBtn.m @ 41:6def6533cb16 database-connection-manager

Report authentication errors to user
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Mon, 05 Dec 2011 18:04:34 +0100
parents f0afece42f48
children
line wrap: on
line source

% CB_CONDSUBTRACTBTN remove a condition from the query panel
%
% M Hewitson
%
% $Id: cb_condSubtractBtn.m,v 1.1 2009/02/03 08:15:30 hewitson Exp $
%
function cb_condSubtractBtn(varargin)

  myh = varargin{1};

  mainfig = varargin{end};
  Nc = mainfig.Nconditions;
  if Nc < 1
    Nc = 1;
  end
  mainfig.Nconditions = Nc - 1;

  buildConditions(mainfig);

end