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/WinButtonTheme.hh | |
parent | 54230c9a4474baf4f1c56773992212093e222349 (diff) | |
download | fluxbox_pavel-f7d7dfd2a8047207dbe90bc77592c25acf4ca15c.zip fluxbox_pavel-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/WinButtonTheme.hh')
-rw-r--r-- | src/WinButtonTheme.hh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/WinButtonTheme.hh b/src/WinButtonTheme.hh index 5436237..f7f2337 100644 --- a/src/WinButtonTheme.hh +++ b/src/WinButtonTheme.hh | |||
@@ -65,8 +65,7 @@ public: | |||
65 | FbTk::PixmapWithMask &titlePixmap() { return *m_title_pm; } | 65 | FbTk::PixmapWithMask &titlePixmap() { return *m_title_pm; } |
66 | const FbTk::PixmapWithMask &titlePixmap() const { return *m_title_pm; } | 66 | const FbTk::PixmapWithMask &titlePixmap() const { return *m_title_pm; } |
67 | 67 | ||
68 | virtual FbTk::Subject &reconfigSig() { return FbTk::Theme::reconfigSig(); } | 68 | virtual FbTk::Signal<void> &reconfigSig() { return FbTk::Theme::reconfigSig(); } |
69 | virtual const FbTk::Subject &reconfigSig() const { return FbTk::Theme::reconfigSig(); } | ||
70 | 69 | ||
71 | virtual WinButtonTheme &operator *() { return *this; } | 70 | virtual WinButtonTheme &operator *() { return *this; } |
72 | virtual const WinButtonTheme &operator *() const { return *this; } | 71 | virtual const WinButtonTheme &operator *() const { return *this; } |