diff options
author | Mathias Gumz <akira at fluxbox dot org> | 2007-12-29 21:38:53 (GMT) |
---|---|---|
committer | Mathias Gumz <akira at fluxbox dot org> | 2007-12-29 21:38:53 (GMT) |
commit | e1f362ae764884a4cd1e1673292cb37d5a85f89c (patch) | |
tree | 137430b26aee6f3638f27281d3757c2c75ef4b20 /src/ToolFactory.hh | |
parent | e90c3678d9e54bc9251619fdee2d7341f042167b (diff) | |
download | fluxbox-e1f362ae764884a4cd1e1673292cb37d5a85f89c.zip fluxbox-e1f362ae764884a4cd1e1673292cb37d5a85f89c.tar.bz2 |
'inline' in class declaration is implicitly inline
Diffstat (limited to 'src/ToolFactory.hh')
-rw-r--r-- | src/ToolFactory.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ToolFactory.hh b/src/ToolFactory.hh index 7e8edbf..ae80f55 100644 --- a/src/ToolFactory.hh +++ b/src/ToolFactory.hh | |||
@@ -48,8 +48,8 @@ public: | |||
48 | ToolbarItem *create(const std::string &name, const FbTk::FbWindow &parent, Toolbar &tbar); | 48 | ToolbarItem *create(const std::string &name, const FbTk::FbWindow &parent, Toolbar &tbar); |
49 | void updateThemes(); | 49 | void updateThemes(); |
50 | int maxFontHeight(); | 50 | int maxFontHeight(); |
51 | inline const BScreen &screen() const { return m_screen; } | 51 | const BScreen &screen() const { return m_screen; } |
52 | inline BScreen &screen() { return m_screen; } | 52 | BScreen &screen() { return m_screen; } |
53 | 53 | ||
54 | private: | 54 | private: |
55 | BScreen &m_screen; | 55 | BScreen &m_screen; |