diff options
author | Pavel Labath <pavelo@centrum.sk> | 2011-04-29 08:52:28 (GMT) |
---|---|---|
committer | Pavel Labath <pavelo@centrum.sk> | 2011-05-10 11:00:45 (GMT) |
commit | f7d7dfd2a8047207dbe90bc77592c25acf4ca15c (patch) | |
tree | 46eb8596d15fb0450f07e3e5d58e2c5449c4c020 /src/RootTheme.hh | |
parent | 54230c9a4474baf4f1c56773992212093e222349 (diff) | |
download | fluxbox-f7d7dfd2a8047207dbe90bc77592c25acf4ca15c.zip fluxbox-f7d7dfd2a8047207dbe90bc77592c25acf4ca15c.tar.bz2 |
Convert FbTk::Theme::reconfigSig and friends to the new Signal system
I removed the const versions of reconfigSig() in the process since FbTk::Signal has no const
methods anyway.
Diffstat (limited to 'src/RootTheme.hh')
-rw-r--r-- | src/RootTheme.hh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/RootTheme.hh b/src/RootTheme.hh index 0867430..6485448 100644 --- a/src/RootTheme.hh +++ b/src/RootTheme.hh | |||
@@ -48,8 +48,7 @@ public: | |||
48 | 48 | ||
49 | GC opGC() const { return m_opgc.gc(); } | 49 | GC opGC() const { return m_opgc.gc(); } |
50 | 50 | ||
51 | virtual FbTk::Subject &reconfigSig() { return FbTk::Theme::reconfigSig(); } | 51 | virtual FbTk::Signal<void> &reconfigSig() { return FbTk::Theme::reconfigSig(); } |
52 | virtual const FbTk::Subject &reconfigSig() const { return FbTk::Theme::reconfigSig(); } | ||
53 | 52 | ||
54 | virtual RootTheme &operator *() { return *this; } | 53 | virtual RootTheme &operator *() { return *this; } |
55 | virtual const RootTheme &operator *() const { return *this; } | 54 | virtual const RootTheme &operator *() const { return *this; } |