From: <car...@us...> - 2012-05-10 11:13:15
|
Revision: 10397 http://octave.svn.sourceforge.net/octave/?rev=10397&view=rev Author: carandraug Date: 2012-05-10 11:13:09 +0000 (Thu, 10 May 2012) Log Message: ----------- inputParser: bug fix on addSwitch (it was being passed to subsref as ParamValue) Modified Paths: -------------- trunk/octave-forge/main/general/inst/@inputParser/addSwitch.m Modified: trunk/octave-forge/main/general/inst/@inputParser/addSwitch.m =================================================================== --- trunk/octave-forge/main/general/inst/@inputParser/addSwitch.m 2012-05-10 07:44:00 UTC (rev 10396) +++ trunk/octave-forge/main/general/inst/@inputParser/addSwitch.m 2012-05-10 11:13:09 UTC (rev 10397) @@ -38,7 +38,7 @@ ## check @inputParser/subsref for the actual code if (nargin == 2) inPar = subsref (inPar, substruct( - '.' , 'addParamValue', + '.' , 'addSwitch', '()', {name} )); else This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |