From 6baa446f723250561bb79a5613b41b95c98d5cae Mon Sep 17 00:00:00 2001 From: dooglus Date: Fri, 14 Sep 2007 13:15:06 +0000 Subject: [PATCH] Some member variables were public, but never used publically. Made them private instead to make it clearer how they can be modified. git-svn-id: http://svn.voria.com/code@669 1f10aa63-cdf2-0310-b900-c93c546f37ac --- synfig-studio/trunk/src/gtkmm/workarea.h | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/synfig-studio/trunk/src/gtkmm/workarea.h b/synfig-studio/trunk/src/gtkmm/workarea.h index fd04cc5..04cbcab 100644 --- a/synfig-studio/trunk/src/gtkmm/workarea.h +++ b/synfig-studio/trunk/src/gtkmm/workarea.h @@ -235,6 +235,11 @@ private: etl::loose_handle selected_value_node_; + bool queued; + bool rendering; + bool cancel; + + bool curr_guide_is_x; /* -- ** -- P U B L I C D A T A ----------------------------------------------- @@ -256,16 +261,17 @@ public: int get_tile_w()const { return tile_w; } int get_tile_h()const { return tile_h; } + // used in renderer_ducks.cpp bool solid_lines; - bool rendering; + // used in workarea.cpp bool dirty; - bool queued; - bool cancel; + // used in mod_mirror/state_mirror.cpp bool allow_layer_clicks; + // used in state_draw.cpp bool allow_duck_clicks; + // used in renderer_guides.cpp GuideList::iterator curr_guide; - bool curr_guide_is_x; /* -- ** -- P R I V A T E M E T H O D S --------------------------------------- -- 2.7.4