comparison src/graphics.cc @ 12174:db1f49eaba6b

whitespace fixes
author John W. Eaton <jwe@octave.org>
date Wed, 26 Jan 2011 23:49:42 -0500
parents 18e9a8da7d18
children 9558ca33648d
comparison
equal deleted inserted replaced
12173:dd2af7b8dafe 12174:db1f49eaba6b
5613 gh_manager::execute_callback (handle, callback_name, callback_data); 5613 gh_manager::execute_callback (handle, callback_name, callback_data);
5614 } 5614 }
5615 5615
5616 private: 5616 private:
5617 callback_event (void) 5617 callback_event (void)
5618 : base_graphics_event (), handle (), 5618 : base_graphics_event (), handle (),
5619 callback_name (), callback_data () 5619 callback_name (), callback_data ()
5620 { } 5620 { }
5621 5621
5622 private: 5622 private:
5623 graphics_handle handle; 5623 graphics_handle handle;
5637 { 5637 {
5638 function (function_data); 5638 function (function_data);
5639 } 5639 }
5640 5640
5641 private: 5641 private:
5642 5642
5643 graphics_event::event_fcn function; 5643 graphics_event::event_fcn function;
5644 5644
5645 void* function_data; 5645 void* function_data;
5646 5646
5647 // function_event objects must be created with at least a function. 5647 // function_event objects must be created with at least a function.
5670 xset (handle, property_name, property_value); 5670 xset (handle, property_name, property_value);
5671 } 5671 }
5672 5672
5673 private: 5673 private:
5674 set_event (void) 5674 set_event (void)
5675 : base_graphics_event (), 5675 : base_graphics_event (), handle (), property_name (), property_value ()
5676 // FIXME: it it private in order not to be used ?
5677 handle (), property_name (), property_value ()
5678 { } 5676 { }
5679 5677
5680 private: 5678 private:
5681 graphics_handle handle; 5679 graphics_handle handle;
5682 std::string property_name; 5680 std::string property_name;