changeset 26013:1d366a105f18

Remove unnecessary static deprecated functions in graphics.cc. * graphics.cc (is_hghandle, is_figure): Remove unnecessary static deprecated functions.
author Rik <rik@octave.org>
date Fri, 02 Nov 2018 11:59:06 -0700
parents 227e02c26617
children cf133c4f9efd
files libinterp/corefcn/graphics.cc
diffstat 1 files changed, 0 insertions(+), 16 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/graphics.cc	Fri Nov 02 11:14:32 2018 -0700
+++ b/libinterp/corefcn/graphics.cc	Fri Nov 02 11:59:06 2018 -0700
@@ -2972,10 +2972,6 @@
   return h.ok ();
 }
 
-OCTAVE_DEPRECATED (5.0, "use 'ishghandle' instead")
-static bool is_hghandle (const graphics_handle& h)
-{ return ishghandle (h); }
-
 static bool
 ishghandle (double val)
 {
@@ -2984,10 +2980,6 @@
   return h.ok ();
 }
 
-OCTAVE_DEPRECATED (5.0, "use 'ishghandle' instead")
-static bool is_hghandle (double val)
-{ return ishghandle (val); }
-
 static octave_value
 ishghandle (const octave_value& val)
 {
@@ -3010,10 +3002,6 @@
   return retval;
 }
 
-OCTAVE_DEPRECATED (5.0, "use 'ishghandle' instead")
-static octave_value is_hghandle (const octave_value& val)
-{ return ishghandle (val); }
-
 static bool
 isfigure (double val)
 {
@@ -3022,10 +3010,6 @@
   return go && go.isa ("figure");
 }
 
-OCTAVE_DEPRECATED (5.0, "use 'isfigure' instead")
-static bool is_figure (double val)
-{ return isfigure (val); }
-
 static void
 xcreatefcn (const graphics_handle& h)
 {