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/FbTk/FbPixmap.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/FbTk/FbPixmap.hh')
-rw-r--r-- | src/FbTk/FbPixmap.hh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/FbTk/FbPixmap.hh b/src/FbTk/FbPixmap.hh index acae07e..cf0448d 100644 --- a/src/FbTk/FbPixmap.hh +++ b/src/FbTk/FbPixmap.hh | |||
@@ -64,10 +64,10 @@ public: | |||
64 | /// sets new pixmap | 64 | /// sets new pixmap |
65 | FbPixmap &operator = (Pixmap pm); | 65 | FbPixmap &operator = (Pixmap pm); |
66 | 66 | ||
67 | inline Drawable drawable() const { return m_pm; } | 67 | Drawable drawable() const { return m_pm; } |
68 | inline unsigned int width() const { return m_width; } | 68 | unsigned int width() const { return m_width; } |
69 | inline unsigned int height() const { return m_height; } | 69 | unsigned int height() const { return m_height; } |
70 | inline unsigned int depth() const { return m_depth; } | 70 | unsigned int depth() const { return m_depth; } |
71 | 71 | ||
72 | static Pixmap getRootPixmap(int screen_num, bool force_update=false); | 72 | static Pixmap getRootPixmap(int screen_num, bool force_update=false); |
73 | static bool setRootPixmap(int screen_num, Pixmap pm); | 73 | static bool setRootPixmap(int screen_num, Pixmap pm); |