aboutsummaryrefslogtreecommitdiff
path: root/src/Toolbar.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-04-23 00:13:47 (GMT)
committerfluxgen <fluxgen>2003-04-23 00:13:47 (GMT)
commit29dec75f5ddb309b98c50ad33b19423f251826aa (patch)
tree68a5b670f4a6b946e21853134ff60d71f73f9a78 /src/Toolbar.hh
parentc73329d363e7698a1e5294106c4160aac9519863 (diff)
downloadfluxbox-29dec75f5ddb309b98c50ad33b19423f251826aa.zip
fluxbox-29dec75f5ddb309b98c50ad33b19423f251826aa.tar.bz2
minor fix
Diffstat (limited to 'src/Toolbar.hh')
-rw-r--r--src/Toolbar.hh5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Toolbar.hh b/src/Toolbar.hh
index 8905655..4bda5f9 100644
--- a/src/Toolbar.hh
+++ b/src/Toolbar.hh
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: Toolbar.hh,v 1.27 2003/04/16 13:43:48 rathnor Exp $ 25// $Id: Toolbar.hh,v 1.28 2003/04/23 00:13:47 fluxgen Exp $
26 26
27#ifndef TOOLBAR_HH 27#ifndef TOOLBAR_HH
28#define TOOLBAR_HH 28#define TOOLBAR_HH
@@ -98,7 +98,7 @@ public:
98 /// do we auto hide the toolbar? 98 /// do we auto hide the toolbar?
99 inline bool doAutoHide() const { return do_auto_hide; } 99 inline bool doAutoHide() const { return do_auto_hide; }
100 /// @return X window of the toolbar 100 /// @return X window of the toolbar
101 inline Window getWindowID() const { return frame.window.window(); } 101 inline const FbTk::FbWindow &window() const { return frame.window; }
102 inline BScreen &screen() { return m_screen; } 102 inline BScreen &screen() { return m_screen; }
103 inline const BScreen &screen() const { return m_screen; } 103 inline const BScreen &screen() const { return m_screen; }
104 inline unsigned int width() const { return frame.width; } 104 inline unsigned int width() const { return frame.width; }
@@ -190,7 +190,6 @@ private:
190 ThemeListener m_themelistener; 190 ThemeListener m_themelistener;
191 191
192 FbTk::XLayerItem m_layeritem; 192 FbTk::XLayerItem m_layeritem;
193
194}; 193};
195 194
196 195