diff libinterp/corefcn/graphics.cc @ 20941:a4f5da7c5463

maint: Replace "octave_value_list ()" with "ovl ()". * debug.cc, det.cc, ellipj.cc, error.cc, file-io.cc, graphics.cc, hess.cc, input.cc, inv.cc, load-path.cc, lu.cc, octave-link.cc, pager.cc, pinv.cc, pr-output.cc, profiler.cc, schur.cc, symtab.cc, sysdep.cc, urlwrite.cc, variables.cc, __magick_read__.cc, audioread.cc, chol.cc, ov-classdef.h, ov-cs-list.cc, ov-flt-re-mat.cc, ov-re-mat.cc, ov-usr-fcn.cc: maint: Replace "octave_value_list ()" with "ovl ()".
author Rik <rik@octave.org>
date Fri, 18 Dec 2015 16:18:41 -0800
parents 48b2ad5ee801
children 6eff66fb8a02
line wrap: on
line diff
--- a/libinterp/corefcn/graphics.cc	Fri Dec 18 16:04:56 2015 -0800
+++ b/libinterp/corefcn/graphics.cc	Fri Dec 18 16:18:41 2015 -0800
@@ -10119,7 +10119,7 @@
   else if (vals_len == 1)
     return octave_value (vals(0));
   else
-    return octave_value_list ();
+    return ovl ();
 }
 
 static octave_value
@@ -10488,7 +10488,7 @@
 
   delete_graphics_objects (vals);
 
-  return octave_value_list ();
+  return ovl ();
 }
 
 DEFUN (__go_axes_init__, args, ,
@@ -10525,7 +10525,7 @@
   if (! h.ok ())
     error ("__go_axes_init__: axis deleted during initialization (= %g)", val);
 
-  return octave_value_list ();
+  return ovl ();
 }
 
 DEFUN (__go_handles__, args, ,
@@ -10586,7 +10586,7 @@
   else
     gh_manager::execute_callback (h, name, args(2));
 
-  return octave_value_list ();
+  return ovl ();
 }
 
 DEFUN (__image_pixel_size__, args, ,
@@ -10731,7 +10731,7 @@
 
   gtk_manager::register_toolkit (name);
 
-  return octave_value_list ();
+  return ovl ();
 }
 
 DEFUN (loaded_graphics_toolkits, , ,
@@ -10821,7 +10821,7 @@
 
                   gh_manager::unlock ();
 
-                  return octave_value_list ();
+                  return ovl ();
                 }
             }
 
@@ -10853,7 +10853,7 @@
 
               gh_manager::unlock ();
 
-              return octave_value_list ();
+              return ovl ();
             }
           else if (pos_c == std::string::npos)
             {
@@ -10861,7 +10861,7 @@
 
               gh_manager::unlock ();
 
-              return octave_value_list ();
+              return ovl ();
             }
           else if (pos_p != std::string::npos && pos_p < pos_c)
             {
@@ -10885,7 +10885,7 @@
 
                       gh_manager::unlock ();
 
-                      return octave_value_list ();
+                      return ovl ();
                     }
                 }
             }
@@ -10922,7 +10922,7 @@
 
   gh_manager::unlock ();
 
-  return octave_value_list ();
+  return ovl ();
 }
 
 DEFUN (addlistener, args, ,
@@ -10987,7 +10987,7 @@
         go.add_property_listener (pname, args(2), PERSISTENT);
     }
 
-  return octave_value_list ();
+  return ovl ();
 }
 
 DEFUN (dellistener, args, ,
@@ -11050,7 +11050,7 @@
         go.delete_property_listener (pname, args(2), POSTSET);
     }
 
-  return octave_value_list ();
+  return ovl ();
 }
 
 DEFUN (addproperty, args, ,
@@ -11153,7 +11153,7 @@
 
   go.get_properties ().insert_property (name, p);
 
-  return octave_value_list ();
+  return ovl ();
 }
 
 octave_value
@@ -11285,7 +11285,7 @@
         waitfor_results[id] = true;
     }
 
-  return octave_value_list ();
+  return ovl ();
 }
 
 static octave_value_list
@@ -11298,7 +11298,7 @@
       waitfor_results[id] = true;
     }
 
-  return octave_value_list ();
+  return ovl ();
 }
 
 DEFUN (waitfor, args, ,
@@ -11535,7 +11535,7 @@
         }
     }
 
-  return octave_value_list ();
+  return ovl ();
 }
 
 DEFUN (__zoom__, args, ,
@@ -11589,6 +11589,6 @@
       Vdrawnow_requested = true;
     }
 
-  return octave_value_list ();
-}
-
+  return ovl ();
+}
+