diff options
Diffstat (limited to 'src/Workspace.hh')
-rw-r--r-- | src/Workspace.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Workspace.hh b/src/Workspace.hh index 50bac87..bb7db8f 100644 --- a/src/Workspace.hh +++ b/src/Workspace.hh | |||
@@ -66,10 +66,10 @@ public: | |||
66 | int addWindow(FluxboxWindow &win, bool place = false); | 66 | int addWindow(FluxboxWindow &win, bool place = false); |
67 | int removeWindow(FluxboxWindow *win); | 67 | int removeWindow(FluxboxWindow *win); |
68 | void removeWindow(WinClient &client); | 68 | void removeWindow(WinClient &client); |
69 | BScreen &getScreen() { return screen; } | 69 | BScreen &screen() { return m_screen; } |
70 | FluxboxWindow *getLastFocusedWindow() { return lastfocus; } | 70 | FluxboxWindow *getLastFocusedWindow() { return lastfocus; } |
71 | 71 | ||
72 | const BScreen &getScreen() const { return screen; } | 72 | const BScreen &screen() const { return m_screen; } |
73 | const FluxboxWindow *getLastFocusedWindow() const { return lastfocus; } | 73 | const FluxboxWindow *getLastFocusedWindow() const { return lastfocus; } |
74 | FbTk::Menu &menu() { return m_clientmenu; } | 74 | FbTk::Menu &menu() { return m_clientmenu; } |
75 | inline const FbTk::Menu &menu() const { return m_clientmenu; } | 75 | inline const FbTk::Menu &menu() const { return m_clientmenu; } |
@@ -99,7 +99,7 @@ protected: | |||
99 | private: | 99 | private: |
100 | void updateClientmenu(); | 100 | void updateClientmenu(); |
101 | 101 | ||
102 | BScreen &screen; | 102 | BScreen &m_screen; |
103 | FluxboxWindow *lastfocus; | 103 | FluxboxWindow *lastfocus; |
104 | FbTk::Menu m_clientmenu; | 104 | FbTk::Menu m_clientmenu; |
105 | 105 | ||