diff options
Diffstat (limited to 'src/FbWinFrameTheme.hh')
-rw-r--r-- | src/FbWinFrameTheme.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/FbWinFrameTheme.hh b/src/FbWinFrameTheme.hh index fd2a7e9..3c28cbd 100644 --- a/src/FbWinFrameTheme.hh +++ b/src/FbWinFrameTheme.hh | |||
@@ -74,8 +74,8 @@ public: | |||
74 | unsigned int bevelWidth() const { return *m_bevel_width; } | 74 | unsigned int bevelWidth() const { return *m_bevel_width; } |
75 | unsigned int handleWidth() const { return *m_handle_width; } | 75 | unsigned int handleWidth() const { return *m_handle_width; } |
76 | 76 | ||
77 | unsigned char alpha() const { return m_alpha; } | 77 | int alpha() const { return m_alpha; } |
78 | void setAlpha(unsigned char alpha) { m_alpha = alpha; } | 78 | void setAlpha(int alpha) { m_alpha = alpha; } |
79 | 79 | ||
80 | IconbarTheme &iconbarTheme() { return m_iconbar_theme; } | 80 | IconbarTheme &iconbarTheme() { return m_iconbar_theme; } |
81 | 81 | ||
@@ -107,7 +107,7 @@ private: | |||
107 | Cursor m_cursor_right_side; | 107 | Cursor m_cursor_right_side; |
108 | Cursor m_cursor_top_side; | 108 | Cursor m_cursor_top_side; |
109 | Cursor m_cursor_bottom_side; | 109 | Cursor m_cursor_bottom_side; |
110 | unsigned char m_alpha; | 110 | int m_alpha; |
111 | 111 | ||
112 | IconbarTheme m_iconbar_theme; | 112 | IconbarTheme m_iconbar_theme; |
113 | }; | 113 | }; |