changeset 21931:ffa911b616c7

* genpropdoc.m: Don't handle erasemode property.
author John W. Eaton <jwe@octave.org>
date Thu, 16 Jun 2016 17:03:08 -0400
parents f0c5dd1ea2b9
children af1fc90d565e
files doc/interpreter/genpropdoc.m
diffstat 1 files changed, 3 insertions(+), 16 deletions(-) [+]
line wrap: on
line diff
--- a/doc/interpreter/genpropdoc.m	Thu Jun 16 15:56:00 2016 -0400
+++ b/doc/interpreter/genpropdoc.m	Thu Jun 16 17:03:08 2016 -0400
@@ -851,9 +851,6 @@
         s.doc = "Text for the legend entry corresponding to this line.";
         s.valid = valid_cellstring;
 
-      case "erasemode"
-        s.doc = doc_unused;
-
       case "interpreter"
 
       case "linestyle"
@@ -933,8 +930,6 @@
         s.valid = valid_color;
 
       case "editing"
-      case "erasemode"
-        s.doc = doc_unused;
 
       case "extent"
       case "fontangle"
@@ -1015,9 +1010,6 @@
         s.doc = "Text for the legend entry corresponding to this image.";
         s.valid = valid_cellstring;
 
-      case "erasemode"
-        s.doc = doc_unused;
-
       case "xdata"
         s.doc = "Two-element vector @code{[xmin xmax]} specifying the x \
 coordinates of the first and last columns of the image.\n\
@@ -1086,8 +1078,6 @@
 the vertices). @qcode{\"phong\"} is deprecated and has the same effect as \
 @qcode{\"gouraud\"}.";
 
-      case "erasemode"
-        s.doc = doc_unused;
       case "facealpha"
         s.doc = sprintf (doc_notimpl, "Transparency");
         s.valid = valid_scalmat;
@@ -1211,9 +1201,6 @@
 the vertices). @qcode{\"phong\"} is deprecated and has the same effect as \
 @qcode{\"gouraud\"}.";
 
-      case "erasemode"
-        s.doc = doc_unused;
-
       case "facealpha"
         s.doc = sprintf (doc_notimpl, "Transparency");
         s.valid = valid_scalmat;
@@ -1505,8 +1492,8 @@
 
   ## Build a default object to extract its properties list and default values.
   if (strcmp (objname, "base"))
-    ## Base properties are extracted from hggroup that only have 2 additional
-    ## regular (non-hidden) properties, "displayname" and "erasemode".
+    ## Base properties are extracted from hggroup that only have 1 additional
+    ## regular (non-hidden) property, "displayname".
     h = hggroup ();
   elseif (strcmp (objname, "root"))
     h = 0;
@@ -1554,7 +1541,7 @@
   s = struct (args{:});
 
   if (strcmp (objname, "base"))
-    s = rmfield (s, {"displayname", "erasemode"});
+    s = rmfield (s, "displayname");
   endif
 
   if (isfigure (hf))