# HG changeset patch # User Rik # Date 1381773886 25200 # Node ID 57750dc54ab675422b1586298dee9316987e2e65 # Parent b0f529c3671dc94f0fb0856567400d8346568013 maint: Correct indentation in graphics.cc, graphics.in.h. No code changes. * libinterp/corefcn/graphics.cc, libinterp/corefcn/graphics.in.h: Correct indentation of constructors. No code changes. diff -r b0f529c3671d -r 57750dc54ab6 libinterp/corefcn/graphics.cc --- a/libinterp/corefcn/graphics.cc Mon Oct 14 10:44:38 2013 -0700 +++ b/libinterp/corefcn/graphics.cc Mon Oct 14 11:04:46 2013 -0700 @@ -8022,13 +8022,13 @@ public: callback_event (const graphics_handle& h, const std::string& name, const octave_value& data = Matrix ()) - : base_graphics_event (), handle (h), callback_name (name), - callback (), callback_data (data) { } + : 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 (), - callback (cb), callback_data (data) { } + : base_graphics_event (), handle (h), callback_name (), + callback (cb), callback_data (data) { } void execute (void) { @@ -8040,8 +8040,7 @@ private: callback_event (void) - : base_graphics_event (), handle (), - callback_name (), callback_data () + : base_graphics_event (), handle (), callback_name (), callback_data () { } private: @@ -8056,8 +8055,8 @@ { public: function_event (graphics_event::event_fcn fcn, void* data = 0) - : base_graphics_event (), function (fcn), - function_data (data) { } + : base_graphics_event (), function (fcn), function_data (data) + { } void execute (void) { @@ -8086,8 +8085,8 @@ public: set_event (const graphics_handle& h, const std::string& name, const octave_value& value, bool do_notify_toolkit = true) - : base_graphics_event (), handle (h), property_name (name), - property_value (value), notify_toolkit (do_notify_toolkit) { } + : base_graphics_event (), handle (h), property_name (name), + property_value (value), notify_toolkit (do_notify_toolkit) { } void execute (void) { diff -r b0f529c3671d -r 57750dc54ab6 libinterp/corefcn/graphics.in.h --- a/libinterp/corefcn/graphics.in.h Mon Oct 14 10:44:38 2013 -0700 +++ b/libinterp/corefcn/graphics.in.h Mon Oct 14 11:04:46 2013 -0700 @@ -1234,23 +1234,23 @@ { public: double_radio_property (double d, const radio_values& v) - : base_property ("", graphics_handle ()), - current_type (double_t), dval (d), radio_val (v), - current_val (v.default_value ()) + : base_property ("", graphics_handle ()), + current_type (double_t), dval (d), radio_val (v), + current_val (v.default_value ()) { } double_radio_property (const std::string& nm, const graphics_handle& h, const std::string& v) - : base_property (nm, h), - current_type (radio_t), dval (0), radio_val (v), - current_val (radio_val.default_value ()) + : base_property (nm, h), + current_type (radio_t), dval (0), radio_val (v), + current_val (radio_val.default_value ()) { } double_radio_property (const std::string& nm, const graphics_handle& h, const double_radio_property& v) - : base_property (nm, h), - current_type (v.current_type), dval (v.dval), - radio_val (v.radio_val), current_val (v.current_val) + : base_property (nm, h), + current_type (v.current_type), dval (v.dval), + radio_val (v.radio_val), current_val (v.current_val) { } double_radio_property (const double_radio_property& p) @@ -2040,7 +2040,7 @@ public: base_graphics_toolkit (const std::string& nm) - : name (nm), count (0) { } + : name (nm), count (0) { } virtual ~base_graphics_toolkit (void) { } @@ -2118,19 +2118,19 @@ { public: graphics_toolkit (void) - : rep (new base_graphics_toolkit ("unknown")) + : rep (new base_graphics_toolkit ("unknown")) { rep->count++; } graphics_toolkit (base_graphics_toolkit* b) - : rep (b) + : rep (b) { rep->count++; } graphics_toolkit (const graphics_toolkit& b) - : rep (b.rep) + : rep (b.rep) { rep->count++; } @@ -3468,11 +3468,11 @@ graphics_xform (const Matrix& xm, const Matrix& xim, const scaler& x, const scaler& y, const scaler& z, const Matrix& zl) - : xform (xm), xform_inv (xim), sx (x), sy (y), sz (z), zlim (zl) { } + : xform (xm), xform_inv (xim), sx (x), sy (y), sz (z), zlim (zl) { } graphics_xform (const graphics_xform& g) - : xform (g.xform), xform_inv (g.xform_inv), sx (g.sx), - sy (g.sy), sz (g.sz), zlim (g.zlim) { } + : xform (g.xform), xform_inv (g.xform_inv), sx (g.sx), + sy (g.sy), sz (g.sz), zlim (g.zlim) { } ~graphics_xform (void) { }