diff options
author | mathias <mathias> | 2004-12-13 14:03:17 (GMT) |
---|---|---|
committer | mathias <mathias> | 2004-12-13 14:03:17 (GMT) |
commit | eb42a7806d0af854cc4bdfa8f194a0bb67446153 (patch) | |
tree | 5a8a22b0705ee927a16265f1a754159835fb22d9 /src/FbTk/Theme.hh | |
parent | 7c7dfbfbddc635faaabb87fa755925fbb66d89dd (diff) | |
download | fluxbox_pavel-eb42a7806d0af854cc4bdfa8f194a0bb67446153.zip fluxbox_pavel-eb42a7806d0af854cc4bdfa8f194a0bb67446153.tar.bz2 |
icc complaint about a "possible" conflict between the
FbTk::Menu::update(Subject*) and FbTk::Menu::update(int index)
to avoid this, we rename FbTk::Menu::update(int index)
-> FbTk::Menu::updateMenu(int index)
this is mostly cosmetic, but if it makes the life of a compiler happy, well ..
be happy icc :)
Diffstat (limited to 'src/FbTk/Theme.hh')
-rw-r--r-- | src/FbTk/Theme.hh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/FbTk/Theme.hh b/src/FbTk/Theme.hh index 7b83122..338c24b 100644 --- a/src/FbTk/Theme.hh +++ b/src/FbTk/Theme.hh | |||
@@ -135,6 +135,9 @@ public: | |||
135 | 135 | ||
136 | bool verbose() const { return m_verbose; } | 136 | bool verbose() const { return m_verbose; } |
137 | void setVerbose(bool value) { m_verbose = value; } | 137 | void setVerbose(bool value) { m_verbose = value; } |
138 | |||
139 | // dump theme out to filename, stdout if no filename is given | ||
140 | void dump(Theme& theme, const char* filename = 0) const; | ||
138 | // void listItems(); | 141 | // void listItems(); |
139 | private: | 142 | private: |
140 | ThemeManager(); | 143 | ThemeManager(); |