Mark some methods as private.
authorayin <ayin>
Tue, 19 Feb 2008 17:49:36 +0000 (17:49 +0000)
committerayin <ayin>
Tue, 19 Feb 2008 17:49:36 +0000 (17:49 +0000)
src/scrollbar.h

index 8929e5d49ec822c8dc948e69a7ec333a53bcd8c2..28e9670f87fbabe65c9a4631bf1afa94bb7b1a08 100644 (file)
@@ -65,8 +65,6 @@ struct scrollBar_t {
   Cursor          leftptr_cursor;
   int             (scrollBar_t::*update)(int);
   void setup (rxvt_term *);
-  // update style dependent data
-  void update_data ();
   void resize ();
   int map (int);
   int show (int);
@@ -129,6 +127,10 @@ struct scrollBar_t {
   GC              pscrollbarGC;
 #endif
 
+private:
+  // update style dependent data
+  void update_data ();
+
   // scrollbar-next.C
   int show_next (int);
   // scrollbar-rxvt.C
@@ -138,7 +140,6 @@ struct scrollBar_t {
   // scrollbar-plain.C
   int show_plain (int);
 
-private:
   void init_next ();
 };