aboutsummaryrefslogtreecommitdiff
path: root/src/Workspace.hh
diff options
context:
space:
mode:
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 *);