aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-09-08 19:12:33 (GMT)
committerfluxgen <fluxgen>2002-09-08 19:12:33 (GMT)
commit9d5f454cc69f62b2afc91b04e0c5b1c8f4df777c (patch)
treebced2709df4b861e2ef7fb227d55107de6e1cbc3 /src
parente42d6fc1dc49b077547f549da32bd7f7de06d0b6 (diff)
downloadfluxbox-9d5f454cc69f62b2afc91b04e0c5b1c8f4df777c.zip
fluxbox-9d5f454cc69f62b2afc91b04e0c5b1c8f4df777c.tar.bz2
const and ref
Diffstat (limited to 'src')
-rw-r--r--src/BaseDisplay.hh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/BaseDisplay.hh b/src/BaseDisplay.hh
index 09af9c5..142f5dd 100644
--- a/src/BaseDisplay.hh
+++ b/src/BaseDisplay.hh
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: BaseDisplay.hh,v 1.28 2002/08/30 13:09:24 fluxgen Exp $ 25// $Id: BaseDisplay.hh,v 1.29 2002/09/08 19:12:33 fluxgen Exp $
26 26
27#ifndef BASEDISPLAY_HH 27#ifndef BASEDISPLAY_HH
28#define BASEDISPLAY_HH 28#define BASEDISPLAY_HH
@@ -136,9 +136,9 @@ public:
136 136
137 inline BaseDisplay *getBaseDisplay() { return basedisplay; } 137 inline BaseDisplay *getBaseDisplay() { return basedisplay; }
138 138
139 inline Visual *getVisual() { return visual; } 139 inline Visual *getVisual() const { return visual; }
140 inline const Window &getRootWindow() const { return root_window; } 140 inline Window getRootWindow() const { return root_window; }
141 inline const Colormap &colormap() const { return m_colormap; } 141 inline Colormap colormap() const { return m_colormap; }
142 142
143 inline int getDepth() const { return depth; } 143 inline int getDepth() const { return depth; }
144 inline int getScreenNumber() const { return screen_number; } 144 inline int getScreenNumber() const { return screen_number; }