aboutsummaryrefslogtreecommitdiff
path: root/src/IconbarTool.hh
diff options
context:
space:
mode:
authorMark Tiefenbruck <mark@fluxbox.org>2008-08-23 19:46:36 (GMT)
committerMark Tiefenbruck <mark@fluxbox.org>2008-08-23 19:46:36 (GMT)
commit37a602899dc1c6f42076ff64d19a4b378cfa2b8f (patch)
tree656d1655d4e05123107ba0fc95ede46675779bbd /src/IconbarTool.hh
parente6b11e06c67d0c7987410097b62f730dcd88db3a (diff)
downloadfluxbox-37a602899dc1c6f42076ff64d19a4b378cfa2b8f.zip
fluxbox-37a602899dc1c6f42076ff64d19a4b378cfa2b8f.tar.bz2
fix reading iconbar border from theme
Diffstat (limited to 'src/IconbarTool.hh')
-rw-r--r--src/IconbarTool.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/IconbarTool.hh b/src/IconbarTool.hh
index 58f8791..efb4a1a 100644
--- a/src/IconbarTool.hh
+++ b/src/IconbarTool.hh
@@ -43,7 +43,7 @@ class IconbarTool: public ToolbarItem, public FbTk::Observer {
43public: 43public:
44 typedef std::map<Focusable *, IconButton *> IconMap; 44 typedef std::map<Focusable *, IconButton *> IconMap;
45 45
46 IconbarTool(const FbTk::FbWindow &parent, 46 IconbarTool(const FbTk::FbWindow &parent, IconbarTheme &theme,
47 FbTk::ThemeProxy<IconbarTheme> &focused_theme, 47 FbTk::ThemeProxy<IconbarTheme> &focused_theme,
48 FbTk::ThemeProxy<IconbarTheme> &unfocused_theme, 48 FbTk::ThemeProxy<IconbarTheme> &unfocused_theme,
49 BScreen &screen, FbTk::Menu &menu); 49 BScreen &screen, FbTk::Menu &menu);
@@ -97,6 +97,7 @@ private:
97 97
98 BScreen &m_screen; 98 BScreen &m_screen;
99 FbTk::Container m_icon_container; 99 FbTk::Container m_icon_container;
100 IconbarTheme &m_theme;
100 FbTk::ThemeProxy<IconbarTheme> &m_focused_theme, &m_unfocused_theme; 101 FbTk::ThemeProxy<IconbarTheme> &m_focused_theme, &m_unfocused_theme;
101 FbTk::CachedPixmap m_empty_pm; ///< pixmap for empty container 102 FbTk::CachedPixmap m_empty_pm; ///< pixmap for empty container
102 103