Mercurial > hg > octave-lyh
diff scripts/plot/uimenu.m @ 17123:bd50e0660545
test: Add missing semicolons to suppress output in some plot %!tests.
* scripts/plot/allchild.m, scripts/plot/findall.m, scripts/plot/findobj.m,
scripts/plot/legend.m, scripts/plot/uimenu.m:
Add missing semicolons to suppress output in some plot %!tests.
author | Rik <rik@octave.org> |
---|---|
date | Wed, 31 Jul 2013 13:31:01 -0700 |
parents | dbd64c9a16da |
children | bc924baa2c4e |
line wrap: on
line diff
--- a/scripts/plot/uimenu.m +++ b/scripts/plot/uimenu.m @@ -102,7 +102,7 @@ %!testif HAVE_FLTK %! toolkit = graphics_toolkit ("fltk"); -%! hf = figure ("visible", "off") +%! hf = figure ("visible", "off"); %! unwind_protect %! ui = uimenu ("label", "mylabel"); %! assert (findobj (hf, "type", "uimenu"), ui); @@ -119,7 +119,7 @@ %% check for top level menus file, edit, and help %!testif HAVE_FLTK %! toolkit = graphics_toolkit ("fltk"); -%! hf = figure ("visible", "off") +%! hf = figure ("visible", "off"); %! unwind_protect %! uif = findall (hf, "label", "&file"); %! assert (ishghandle (uif)); @@ -134,7 +134,7 @@ %!testif HAVE_FLTK %! toolkit = graphics_toolkit ("fltk"); -%! hf = figure ("visible", "off") +%! hf = figure ("visible", "off"); %! unwind_protect %! uie = findall (hf, "label", "&edit"); %! myui = uimenu (uie, "label", "mylabel");