aboutsummaryrefslogtreecommitdiff
path: root/src/Workspace.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-05-17 11:07:36 (GMT)
committerfluxgen <fluxgen>2002-05-17 11:07:36 (GMT)
commitc0e2ccff443c5237c3f84abd8b43c276c66cfa87 (patch)
treebf2c8f9c5dcfb583db769c048d683f6bb147b6c1 /src/Workspace.hh
parentd210e29fce43cc003e6b845fa90182051c39c8a9 (diff)
downloadfluxbox-c0e2ccff443c5237c3f84abd8b43c276c66cfa87.zip
fluxbox-c0e2ccff443c5237c3f84abd8b43c276c66cfa87.tar.bz2
removed const on return values of fundamental types
Diffstat (limited to 'src/Workspace.hh')
-rw-r--r--src/Workspace.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Workspace.hh b/src/Workspace.hh
index fa7f245..7bf72f2 100644
--- a/src/Workspace.hh
+++ b/src/Workspace.hh
@@ -54,8 +54,8 @@ public:
54 void update(); 54 void update();
55 void setCurrent(); 55 void setCurrent();
56 void shutdown(); 56 void shutdown();
57 const int addWindow(FluxboxWindow *window, bool place = false); 57 int addWindow(FluxboxWindow *window, bool place = false);
58 const int removeWindow(FluxboxWindow *); 58 int removeWindow(FluxboxWindow *);
59 59
60 inline BScreen *getScreen() const { return screen; } 60 inline BScreen *getScreen() const { return screen; }
61 inline FluxboxWindow *getLastFocusedWindow(void) const { return lastfocus; } 61 inline FluxboxWindow *getLastFocusedWindow(void) const { return lastfocus; }
@@ -69,7 +69,7 @@ public:
69 inline const Windows &getWindowList() const { return windowList; } 69 inline const Windows &getWindowList() const { return windowList; }
70 bool isCurrent() const; 70 bool isCurrent() const;
71 bool isLastWindow(FluxboxWindow *window) const; 71 bool isLastWindow(FluxboxWindow *window) const;
72 const int getCount() const; 72 int getCount() const;
73 73
74protected: 74protected:
75 void placeWindow(FluxboxWindow *); 75 void placeWindow(FluxboxWindow *);