aboutsummaryrefslogtreecommitdiff
path: root/src/RootTheme.hh
diff options
context:
space:
mode:
authormarkt <markt>2007-01-20 18:26:55 (GMT)
committermarkt <markt>2007-01-20 18:26:55 (GMT)
commit832dba7d16b77f786b34347cf5dd6c36bd69f586 (patch)
tree36db5da8df26bc8d58253a9c852e8146e0434079 /src/RootTheme.hh
parent9de41b30be9af1266860f6e3c76c4e85bfb9abc8 (diff)
downloadfluxbox-832dba7d16b77f786b34347cf5dd6c36bd69f586.zip
fluxbox-832dba7d16b77f786b34347cf5dd6c36bd69f586.tar.bz2
let styles override rootCommand in init, plus removing some code I accidentally left in
Diffstat (limited to 'src/RootTheme.hh')
-rw-r--r--src/RootTheme.hh4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/RootTheme.hh b/src/RootTheme.hh
index aee6d85..abfea7c 100644
--- a/src/RootTheme.hh
+++ b/src/RootTheme.hh
@@ -45,8 +45,7 @@ public:
45 /// constructor 45 /// constructor
46 /// @param resmanager resource manager for finding specific resources 46 /// @param resmanager resource manager for finding specific resources
47 /// @param image_control for rendering background texture 47 /// @param image_control for rendering background texture
48 RootTheme(const std::string &root_command, 48 RootTheme(FbTk::ImageControl &image_control);
49 FbTk::ImageControl &image_control);
50 ~RootTheme(); 49 ~RootTheme();
51 50
52 bool fallback(FbTk::ThemeItem_base &item); 51 bool fallback(FbTk::ThemeItem_base &item);
@@ -64,7 +63,6 @@ public:
64private: 63private:
65 BackgroundItem *m_background;///< background image/texture 64 BackgroundItem *m_background;///< background image/texture
66 FbTk::GContext m_opgc; 65 FbTk::GContext m_opgc;
67 const std::string &m_root_command;
68 FbTk::ImageControl &m_image_ctrl; ///< image control for rendering background texture 66 FbTk::ImageControl &m_image_ctrl; ///< image control for rendering background texture
69 67
70}; 68};