diff src/graphics.h.in @ 12174:db1f49eaba6b

whitespace fixes
author John W. Eaton <jwe@octave.org>
date Wed, 26 Jan 2011 23:49:42 -0500
parents 18e9a8da7d18
children 85934e0fcce9
line wrap: on
line diff
--- a/src/graphics.h.in	Wed Jan 26 23:15:59 2011 -0500
+++ b/src/graphics.h.in	Wed Jan 26 23:49:42 2011 -0500
@@ -326,17 +326,17 @@
   friend class property;
 
 public:
-  base_property (void) 
-    : id (-1), count (1), name (), parent (), hidden (), listeners () 
+  base_property (void)
+    : id (-1), count (1), name (), parent (), hidden (), listeners ()
     { }
 
   base_property (const std::string& s, const graphics_handle& h)
-    : id (-1), count (1), name (s), parent (h), hidden (false), listeners () 
+    : id (-1), count (1), name (s), parent (h), hidden (false), listeners ()
     { }
 
   base_property (const base_property& p)
-    : id (-1), count (1), name (p.name), parent (p.parent), 
-      hidden (p.hidden), listeners () 
+    : id (-1), count (1), name (p.name), parent (p.parent),
+      hidden (p.hidden), listeners ()
     { }
 
   virtual ~base_property (void) { }
@@ -1103,8 +1103,7 @@
   array_property (const std::string& nm, const graphics_handle& h,
                   const octave_value& m)
     : base_property (nm, h), data (m),
-    xmin (), xmax (), xminp (), type_constraints (), size_constraints ()
-    
+      xmin (), xmax (), xminp (), type_constraints (), size_constraints ()
     {
       get_data_limits ();
     }
@@ -2978,7 +2977,7 @@
 {
 public:
   graphics_xform (void)
-    : xform (xform_eye ()), xform_inv (xform_eye ()), 
+    : xform (xform_eye ()), xform_inv (xform_eye ()),
       sx ("linear"), sy ("linear"), sz ("linear"),  zlim (1, 2, 0.0)
     {
       zlim(1) = 1.0;