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/ToolTheme.hh | |
parent | e90c3678d9e54bc9251619fdee2d7341f042167b (diff) | |
download | fluxbox_pavel-e1f362ae764884a4cd1e1673292cb37d5a85f89c.zip fluxbox_pavel-e1f362ae764884a4cd1e1673292cb37d5a85f89c.tar.bz2 |
'inline' in class declaration is implicitly inline
Diffstat (limited to 'src/ToolTheme.hh')
-rw-r--r-- | src/ToolTheme.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ToolTheme.hh b/src/ToolTheme.hh index 270b67a..97d3d46 100644 --- a/src/ToolTheme.hh +++ b/src/ToolTheme.hh | |||
@@ -45,8 +45,8 @@ public: | |||
45 | // textures | 45 | // textures |
46 | const FbTk::Texture &texture() const { return *m_texture; } | 46 | const FbTk::Texture &texture() const { return *m_texture; } |
47 | const FbTk::BorderTheme &border() const { return m_border; } | 47 | const FbTk::BorderTheme &border() const { return m_border; } |
48 | inline unsigned char alpha() const { return m_alpha; } | 48 | unsigned char alpha() const { return m_alpha; } |
49 | inline void setAlpha(unsigned char alpha) { m_alpha = alpha; } | 49 | void setAlpha(unsigned char alpha) { m_alpha = alpha; } |
50 | 50 | ||
51 | protected: | 51 | protected: |
52 | FbTk::ThemeItem<FbTk::Texture> &textureTheme() { return m_texture; } | 52 | FbTk::ThemeItem<FbTk::Texture> &textureTheme() { return m_texture; } |