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/SystemTray.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/SystemTray.hh')
-rw-r--r-- | src/SystemTray.hh | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/SystemTray.hh b/src/SystemTray.hh index 3209790..d92e437 100644 --- a/src/SystemTray.hh +++ b/src/SystemTray.hh | |||
@@ -40,7 +40,6 @@ class AtomHandler; | |||
40 | 40 | ||
41 | namespace FbTk { | 41 | namespace FbTk { |
42 | template <class T> class ThemeProxy; | 42 | template <class T> class ThemeProxy; |
43 | class Observer; | ||
44 | } | 43 | } |
45 | 44 | ||
46 | class SystemTray: public ToolbarItem, public FbTk::EventHandler, | 45 | class SystemTray: public ToolbarItem, public FbTk::EventHandler, |
@@ -89,10 +88,6 @@ public: | |||
89 | static Atom getXEmbedInfoAtom(); | 88 | static Atom getXEmbedInfoAtom(); |
90 | 89 | ||
91 | private: | 90 | private: |
92 | /// Called when an update for a screen is needed. | ||
93 | void updateForScreen(BScreen &screen) { | ||
94 | update(); | ||
95 | } | ||
96 | void update(); | 91 | void update(); |
97 | 92 | ||
98 | typedef std::list<TrayWindow *> ClientList; | 93 | typedef std::list<TrayWindow *> ClientList; |
@@ -116,7 +111,6 @@ private: | |||
116 | // gaim/pidgin seems to barf if the selection is not an independent window. | 111 | // gaim/pidgin seems to barf if the selection is not an independent window. |
117 | // I suspect it's an interacton with parent relationship and gdk window caching. | 112 | // I suspect it's an interacton with parent relationship and gdk window caching. |
118 | FbTk::FbWindow m_selection_owner; | 113 | FbTk::FbWindow m_selection_owner; |
119 | std::auto_ptr<FbTk::Observer> m_observer; | ||
120 | }; | 114 | }; |
121 | 115 | ||
122 | #endif // SYSTEMTRAY_HH | 116 | #endif // SYSTEMTRAY_HH |