Mercurial > hg > aimmat
annotate aim-mat/tools/@parameter/setslidereditcontrol.m @ 4:537f939baef0 tip
various bug fixes and changed copyright message
author | Stefan Bleeck <bleeck@gmail.com> |
---|---|
date | Tue, 16 Aug 2011 14:37:17 +0100 |
parents | 74dedb26614d |
children |
rev | line source |
---|---|
tomwalters@0 | 1 % method of class @parameter |
tomwalters@0 | 2 % |
tomwalters@0 | 3 % (c) 2003-2008, University of Cambridge |
tomwalters@0 | 4 % Maintained by Tom Walters (tcw24@cam.ac.uk), written by Stefan Bleeck (stefan@bleeck.de) |
tomwalters@0 | 5 % http://www.pdn.cam.ac.uk/cnbh/aim2006/tools/parameter |
tomwalters@0 | 6 % $Date: 2008-06-10 18:00:16 +0100 (Tue, 10 Jun 2008) $ |
tomwalters@0 | 7 function param=setslidereditcontrol(param,text,slidereditcombi,inbox) |
tomwalters@0 | 8 % defines the tooltio for that entry |
tomwalters@0 | 9 |
tomwalters@0 | 10 if nargin<4 |
tomwalters@0 | 11 inbox='all'; |
tomwalters@0 | 12 end |
tomwalters@0 | 13 |
tomwalters@0 | 14 nr=getentrynumberbytext(param,text,inbox); |
tomwalters@0 | 15 if nr>0 |
tomwalters@0 | 16 param.entries{nr}.slidereditcombi=slidereditcombi; |
tomwalters@0 | 17 end |
tomwalters@0 | 18 |