changeset 13908:32a77debff75

strip trailing spaces
author Konstantinos Poulios <logari81@googlemail.com>
date Tue, 22 Nov 2011 17:50:11 +0100
parents 155e9c625761
children c694c4ced5f7
files src/graphics.cc
diffstat 1 files changed, 9 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/src/graphics.cc	Tue Nov 22 04:23:02 2011 -0500
+++ b/src/graphics.cc	Tue Nov 22 17:50:11 2011 +0100
@@ -2384,7 +2384,7 @@
 xinitialize (const graphics_handle& h)
 {
   graphics_object go = gh_manager::get_object (h);
-  
+
   if (go)
     go.initialize ();
 }
@@ -7074,7 +7074,7 @@
 
   // FIXME: parsed content should be cached for efficiency
   // FIXME: support multiline text
-  
+
   elt = text_parser_none ().parse (get_string_string ());
 #ifdef HAVE_FONTCONFIG
   text_renderer.set_font (get_fontname (),
@@ -7105,7 +7105,7 @@
   graphics_object parent_obj = gh_manager::get_object (get_parent ());
   Matrix parent_bbox = parent_obj.get_properties ().get_boundingbox (true),
          parent_size = parent_bbox.extract_n (0, 2, 1, 2);
-  
+
   pos = convert_position (pos, cached_units, get_units (), parent_size);
   set_position (pos);
 
@@ -7276,7 +7276,7 @@
   graphics_object parent_obj = gh_manager::get_object (get_parent ());
   Matrix parent_bbox = parent_obj.get_properties ().get_boundingbox (true),
          parent_size = parent_bbox.extract_n (0, 2, 1, 2);
-  
+
   pos = convert_position (pos, old_units, get_units (), parent_size);
   set_position (pos);
 }
@@ -7456,7 +7456,7 @@
                   const octave_value& data = Matrix ())
       : base_graphics_event (), handle (h), callback_name (name),
         callback (), callback_data (data) { }
-  
+
   callback_event (const graphics_handle& h, const octave_value& cb,
                   const octave_value& data = Matrix ())
       : base_graphics_event (), handle (h), callback_name (),
@@ -7627,7 +7627,7 @@
   else
     {
       gh_manager::auto_lock guard;
-      
+
       do_post_event (graphics_event::create_callback_event (h, l));
     }
 }
@@ -7773,9 +7773,9 @@
   graphics_event e;
   bool old_Vdrawnow_requested = Vdrawnow_requested;
   unwind_protect frame;
- 
+
   static int process_events_executing = 0;
- 
+
   frame.protect_var (process_events_executing);
 
   if (++process_events_executing <= 1)
@@ -7834,7 +7834,7 @@
   return 0;
 }
 
-void 
+void
 gh_manager::do_enable_event_processing (bool enable)
 {
   gh_manager::auto_lock guard;