aboutsummaryrefslogtreecommitdiff
path: root/src/SystemTray.hh
diff options
context:
space:
mode:
authorMathias Gumz <akira at fluxbox dot org>2007-12-29 21:38:53 (GMT)
committerMathias Gumz <akira at fluxbox dot org>2007-12-29 21:38:53 (GMT)
commite1f362ae764884a4cd1e1673292cb37d5a85f89c (patch)
tree137430b26aee6f3638f27281d3757c2c75ef4b20 /src/SystemTray.hh
parente90c3678d9e54bc9251619fdee2d7341f042167b (diff)
downloadfluxbox-e1f362ae764884a4cd1e1673292cb37d5a85f89c.zip
fluxbox-e1f362ae764884a4cd1e1673292cb37d5a85f89c.tar.bz2
'inline' in class declaration is implicitly inline
Diffstat (limited to 'src/SystemTray.hh')
-rw-r--r--src/SystemTray.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/SystemTray.hh b/src/SystemTray.hh
index e5c1f8c..ff3c0f7 100644
--- a/src/SystemTray.hh
+++ b/src/SystemTray.hh
@@ -69,8 +69,8 @@ public:
69 int numClients() const { return m_clients.size(); } 69 int numClients() const { return m_clients.size(); }
70 const FbTk::FbWindow &window() const { return m_window; } 70 const FbTk::FbWindow &window() const { return m_window; }
71 71
72 inline void renderTheme(unsigned char alpha) { m_window.setAlpha(alpha); update(0); } 72 void renderTheme(unsigned char alpha) { m_window.setAlpha(alpha); update(0); }
73 inline void updateSizing() {} 73 void updateSizing() {}
74 74
75 void parentMoved() { m_window.parentMoved(); } 75 void parentMoved() { m_window.parentMoved(); }
76 76
@@ -79,7 +79,7 @@ public:
79private: 79private:
80 80
81 void update(FbTk::Subject *subj); 81 void update(FbTk::Subject *subj);
82 82
83 typedef std::list<TrayWindow *> ClientList; 83 typedef std::list<TrayWindow *> ClientList;
84 ClientList::iterator findClient(Window win); 84 ClientList::iterator findClient(Window win);
85 85