aboutsummaryrefslogtreecommitdiff
path: root/src/ButtonTheme.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/ButtonTheme.hh
parente90c3678d9e54bc9251619fdee2d7341f042167b (diff)
downloadfluxbox-e1f362ae764884a4cd1e1673292cb37d5a85f89c.zip
fluxbox-e1f362ae764884a4cd1e1673292cb37d5a85f89c.tar.bz2
'inline' in class declaration is implicitly inline
Diffstat (limited to 'src/ButtonTheme.hh')
-rw-r--r--src/ButtonTheme.hh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ButtonTheme.hh b/src/ButtonTheme.hh
index 5cc42d7..d9f5aa9 100644
--- a/src/ButtonTheme.hh
+++ b/src/ButtonTheme.hh
@@ -41,10 +41,10 @@ public:
41 bool fallback(FbTk::ThemeItem_base &item); 41 bool fallback(FbTk::ThemeItem_base &item);
42 void reconfigTheme(); 42 void reconfigTheme();
43 43
44 inline const FbTk::Texture &pressed() const { return *m_pressed_texture; } 44 const FbTk::Texture &pressed() const { return *m_pressed_texture; }
45 inline GC gc() const { return m_gc.gc(); } 45 GC gc() const { return m_gc.gc(); }
46 inline int scale() const { return *m_scale; } // scale factor for inside objects 46 int scale() const { return *m_scale; } // scale factor for inside objects
47 inline const std::string &name() { return m_name; } 47 const std::string &name() { return m_name; }
48 48
49private: 49private:
50 FbTk::ThemeItem<FbTk::Color> m_pic_color; 50 FbTk::ThemeItem<FbTk::Color> m_pic_color;