aboutsummaryrefslogtreecommitdiff
path: root/src/ButtonTool.hh
diff options
context:
space:
mode:
authorMathias Gumz <akira at fluxbox dot org>2011-02-22 21:07:39 (GMT)
committerMathias Gumz <akira at fluxbox dot org>2011-02-22 21:07:39 (GMT)
commitd11aa42ace928efc3dd1eebc8988b6bbbc005b2b (patch)
tree0574ed4eaa5092386d3cf5440c636ea586baaebe /src/ButtonTool.hh
parentb7e84104a695bb3628e482c4be93f6f516e46e7d (diff)
downloadfluxbox-d11aa42ace928efc3dd1eebc8988b6bbbc005b2b.zip
fluxbox-d11aa42ace928efc3dd1eebc8988b6bbbc005b2b.tar.bz2
bugfix: consistent use of 'int' for alpha values (#3187373)
WindowMenuAccessor returned strange alpha values if compiled with 'g++ -Os'; unholy black magic happens if template<int> faces functions returning only 'usigned char'.
Diffstat (limited to 'src/ButtonTool.hh')
-rw-r--r--src/ButtonTool.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ButtonTool.hh b/src/ButtonTool.hh
index 484fea6..ec74618 100644
--- a/src/ButtonTool.hh
+++ b/src/ButtonTool.hh
@@ -41,7 +41,7 @@ public:
41 virtual ~ButtonTool(); 41 virtual ~ButtonTool();
42 42
43protected: 43protected:
44 void renderTheme(unsigned char alpha); 44 void renderTheme(int alpha);
45 void updateSizing(); 45 void updateSizing();
46 Pixmap m_cache_pm, m_cache_pressed_pm; 46 Pixmap m_cache_pm, m_cache_pressed_pm;
47 FbTk::ImageControl &m_image_ctrl; 47 FbTk::ImageControl &m_image_ctrl;