aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/ImageControl.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/FbTk/ImageControl.hh
parente90c3678d9e54bc9251619fdee2d7341f042167b (diff)
downloadfluxbox-e1f362ae764884a4cd1e1673292cb37d5a85f89c.zip
fluxbox-e1f362ae764884a4cd1e1673292cb37d5a85f89c.tar.bz2
'inline' in class declaration is implicitly inline
Diffstat (limited to 'src/FbTk/ImageControl.hh')
-rw-r--r--src/FbTk/ImageControl.hh16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/FbTk/ImageControl.hh b/src/FbTk/ImageControl.hh
index fbf05e8..a2c5e92 100644
--- a/src/FbTk/ImageControl.hh
+++ b/src/FbTk/ImageControl.hh
@@ -24,8 +24,8 @@
24 24
25// $Id$ 25// $Id$
26 26
27#ifndef FBTK_IMAGECONTROL_HH 27#ifndef FBTK_IMAGECONTROL_HH
28#define FBTK_IMAGECONTROL_HH 28#define FBTK_IMAGECONTROL_HH
29 29
30// actually, Text is rather tool like, that's where orientation comes from 30// actually, Text is rather tool like, that's where orientation comes from
31#include "Text.hh" 31#include "Text.hh"
@@ -47,14 +47,14 @@ public:
47 unsigned long cache_timeout = 300000l, unsigned long cache_max = 200l); 47 unsigned long cache_timeout = 300000l, unsigned long cache_max = 200l);
48 virtual ~ImageControl(); 48 virtual ~ImageControl();
49 49
50 inline bool doDither() const { return m_dither; } 50 bool doDither() const { return m_dither; }
51#ifdef NOT_USED 51#ifdef NOT_USED
52 inline int bitsPerPixel() const { return bits_per_pixel; } 52 int bitsPerPixel() const { return bits_per_pixel; }
53#endif 53#endif
54 inline int depth() const { return m_screen_depth; } 54 int depth() const { return m_screen_depth; }
55 inline int colorsPerChannel() const { return m_colors_per_channel; } 55 int colorsPerChannel() const { return m_colors_per_channel; }
56 inline int screenNumber() const { return m_screen_num; } 56 int screenNumber() const { return m_screen_num; }
57 inline Visual *visual() const { return m_visual; } 57 Visual *visual() const { return m_visual; }
58 unsigned long getSqrt(unsigned int val) const; 58 unsigned long getSqrt(unsigned int val) const;
59 59
60 /** 60 /**