diff options
Diffstat (limited to 'src/Toolbar.hh')
-rw-r--r-- | src/Toolbar.hh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Toolbar.hh b/src/Toolbar.hh index d6e19db..bd59a8c 100644 --- a/src/Toolbar.hh +++ b/src/Toolbar.hh | |||
@@ -130,6 +130,7 @@ public: | |||
130 | { return ((hidden) ? frame.x_hidden : frame.x); } | 130 | { return ((hidden) ? frame.x_hidden : frame.x); } |
131 | inline const int &getY(void) const | 131 | inline const int &getY(void) const |
132 | { return ((hidden) ? frame.y_hidden : frame.y); } | 132 | { return ((hidden) ? frame.y_hidden : frame.y); } |
133 | inline IconBar *getIconBar(void) { return iconbar; } | ||
133 | 134 | ||
134 | void buttonPressEvent(XButtonEvent *); | 135 | void buttonPressEvent(XButtonEvent *); |
135 | void buttonReleaseEvent(XButtonEvent *); | 136 | void buttonReleaseEvent(XButtonEvent *); |
@@ -155,8 +156,8 @@ public: | |||
155 | 156 | ||
156 | virtual void timeout(void); | 157 | virtual void timeout(void); |
157 | 158 | ||
158 | enum { TopLeft = 1, BottomLeft, TopCenter, | 159 | enum { TOPLEFT = 1, BOTTOMLEFT, TOPCENTER, |
159 | BottomCenter, TopRight, BottomRight }; | 160 | BOTTOMCENTER, TOPRIGHT, BOTTOMRIGHT }; |
160 | }; | 161 | }; |
161 | 162 | ||
162 | 163 | ||