diff scripts/plot/uigetfile.m @ 17408:266fafd1ffc1

fix 2 strcmp<->strncmp issues from 3f0ed69d21c6 * __go_draw_axes__.m: replaced strncmp with strcmp * plot/uigetfile.m: removed length specifier from strcmpi
author Andreas Weber <andreas.weber@hs-offenburg.de>
date Wed, 11 Sep 2013 13:31:45 +0200
parents 3f0ed69d21c6
children
line wrap: on
line diff
--- a/scripts/plot/uigetfile.m	Wed Sep 11 10:32:06 2013 +0200
+++ b/scripts/plot/uigetfile.m	Wed Sep 11 13:31:45 2013 +0200
@@ -174,7 +174,7 @@
         else
           error ("uigetfile: expecting 2-element vector for position argument");
         endif
-      elseif (strcmpi (prop, "multiselect", 11))
+      elseif (strcmpi (prop, "multiselect"))
         if (ischar (val))
           outargs{5} = tolower (val);
         else