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/ToolbarTheme.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/ToolbarTheme.hh')
-rw-r--r-- | src/ToolbarTheme.hh | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/ToolbarTheme.hh b/src/ToolbarTheme.hh index c62a5c1..ba09858 100644 --- a/src/ToolbarTheme.hh +++ b/src/ToolbarTheme.hh | |||
@@ -36,17 +36,16 @@ public: | |||
36 | virtual ~ToolbarTheme(); | 36 | virtual ~ToolbarTheme(); |
37 | 37 | ||
38 | void reconfigTheme(); | 38 | void reconfigTheme(); |
39 | |||
40 | 39 | ||
41 | inline const FbTk::BorderTheme &border() const { return m_border; } | 40 | const FbTk::BorderTheme &border() const { return m_border; } |
42 | inline const FbTk::Texture &toolbar() const { return *m_toolbar; } | 41 | const FbTk::Texture &toolbar() const { return *m_toolbar; } |
43 | 42 | ||
44 | bool fallback(FbTk::ThemeItem_base &item); | 43 | bool fallback(FbTk::ThemeItem_base &item); |
45 | 44 | ||
46 | inline int bevelWidth() const { return *m_bevel_width; } | 45 | int bevelWidth() const { return *m_bevel_width; } |
47 | inline bool shape() const { return *m_shape; } | 46 | bool shape() const { return *m_shape; } |
48 | inline int height() const { return *m_height; } | 47 | int height() const { return *m_height; } |
49 | inline int buttonSize() const { return *m_button_size; } | 48 | int buttonSize() const { return *m_button_size; } |
50 | private: | 49 | private: |
51 | FbTk::ThemeItem<FbTk::Texture> m_toolbar; | 50 | FbTk::ThemeItem<FbTk::Texture> m_toolbar; |
52 | FbTk::BorderTheme m_border; | 51 | FbTk::BorderTheme m_border; |