repo: rxvt-unicode-sixel action: commit revision: path_from: revision_from: 6fe9ec05ec737a6b3efe79563002ab4aac77c49b: path_to: revision_to:
commit 6fe9ec05ec737a6b3efe79563002ab4aac77c49b Author: Emanuele GiaquintaDate: Tue Feb 19 17:49:36 2008 +0000 Mark some methods as private. diff --git a/src/scrollbar.h b/src/scrollbar.h
--- a/src/scrollbar.h
+++ b/src/scrollbar.h
@@ -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 ();
};
-----END OF PAGE-----