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/FbWinFrameTheme.hh | |
parent | e90c3678d9e54bc9251619fdee2d7341f042167b (diff) | |
download | fluxbox-e1f362ae764884a4cd1e1673292cb37d5a85f89c.zip fluxbox-e1f362ae764884a4cd1e1673292cb37d5a85f89c.tar.bz2 |
'inline' in class declaration is implicitly inline
Diffstat (limited to 'src/FbWinFrameTheme.hh')
-rw-r--r-- | src/FbWinFrameTheme.hh | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/FbWinFrameTheme.hh b/src/FbWinFrameTheme.hh index af8ccb8..549ae74 100644 --- a/src/FbWinFrameTheme.hh +++ b/src/FbWinFrameTheme.hh | |||
@@ -52,7 +52,7 @@ public: | |||
52 | 52 | ||
53 | const FbTk::Texture &buttonFocusTexture() const { return *m_button_focus; } | 53 | const FbTk::Texture &buttonFocusTexture() const { return *m_button_focus; } |
54 | const FbTk::Texture &buttonUnfocusTexture() const { return *m_button_unfocus; } | 54 | const FbTk::Texture &buttonUnfocusTexture() const { return *m_button_unfocus; } |
55 | const FbTk::Texture &buttonPressedTexture() const { return *m_button_pressed; } | 55 | const FbTk::Texture &buttonPressedTexture() const { return *m_button_pressed; } |
56 | 56 | ||
57 | const FbTk::Texture &gripFocusTexture() const { return *m_grip_focus; } | 57 | const FbTk::Texture &gripFocusTexture() const { return *m_grip_focus; } |
58 | const FbTk::Texture &gripUnfocusTexture() const { return *m_grip_unfocus; } | 58 | const FbTk::Texture &gripUnfocusTexture() const { return *m_grip_unfocus; } |
@@ -73,18 +73,18 @@ public: | |||
73 | bool fallback(FbTk::ThemeItem_base &item); | 73 | bool fallback(FbTk::ThemeItem_base &item); |
74 | void reconfigTheme(); | 74 | void reconfigTheme(); |
75 | 75 | ||
76 | inline Cursor moveCursor() const { return m_cursor_move; } | 76 | Cursor moveCursor() const { return m_cursor_move; } |
77 | inline Cursor lowerLeftAngleCursor() const { return m_cursor_lower_left_angle; } | 77 | Cursor lowerLeftAngleCursor() const { return m_cursor_lower_left_angle; } |
78 | inline Cursor lowerRightAngleCursor() const { return m_cursor_lower_right_angle; } | 78 | Cursor lowerRightAngleCursor() const { return m_cursor_lower_right_angle; } |
79 | inline Cursor upperLeftAngleCursor() const { return m_cursor_upper_left_angle; } | 79 | Cursor upperLeftAngleCursor() const { return m_cursor_upper_left_angle; } |
80 | inline Cursor upperRightAngleCursor() const { return m_cursor_upper_right_angle; } | 80 | Cursor upperRightAngleCursor() const { return m_cursor_upper_right_angle; } |
81 | inline Cursor leftSideCursor() const { return m_cursor_left_side; } | 81 | Cursor leftSideCursor() const { return m_cursor_left_side; } |
82 | inline Cursor rightSideCursor() const { return m_cursor_right_side; } | 82 | Cursor rightSideCursor() const { return m_cursor_right_side; } |
83 | inline Cursor topSideCursor() const { return m_cursor_top_side; } | 83 | Cursor topSideCursor() const { return m_cursor_top_side; } |
84 | inline Cursor bottomSideCursor() const { return m_cursor_bottom_side; } | 84 | Cursor bottomSideCursor() const { return m_cursor_bottom_side; } |
85 | 85 | ||
86 | inline FbTk::Shape::ShapePlace shapePlace() const { return *m_shape_place; } | 86 | FbTk::Shape::ShapePlace shapePlace() const { return *m_shape_place; } |
87 | inline const FbTk::BorderTheme &border(bool focus) const { return (focus ? m_border_focus : m_border_unfocus); } | 87 | const FbTk::BorderTheme &border(bool focus) const { return (focus ? m_border_focus : m_border_unfocus); } |
88 | 88 | ||
89 | unsigned int titleHeight() const { return *m_title_height; } | 89 | unsigned int titleHeight() const { return *m_title_height; } |
90 | unsigned int bevelWidth() const { return *m_bevel_width; } | 90 | unsigned int bevelWidth() const { return *m_bevel_width; } |
@@ -104,7 +104,7 @@ private: | |||
104 | FbTk::ThemeItem<FbTk::Texture> m_grip_focus, m_grip_unfocus; | 104 | FbTk::ThemeItem<FbTk::Texture> m_grip_focus, m_grip_unfocus; |
105 | 105 | ||
106 | FbTk::ThemeItem<FbTk::Color> m_button_focus_color, m_button_unfocus_color; | 106 | FbTk::ThemeItem<FbTk::Color> m_button_focus_color, m_button_unfocus_color; |
107 | 107 | ||
108 | FbTk::ThemeItem<FbTk::Font> m_font; | 108 | FbTk::ThemeItem<FbTk::Font> m_font; |
109 | FbTk::ThemeItem<FbTk::Shape::ShapePlace> m_shape_place; | 109 | FbTk::ThemeItem<FbTk::Shape::ShapePlace> m_shape_place; |
110 | 110 | ||