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 18db91c..61abe9c 100644 --- a/src/Workspace.hh +++ b/src/Workspace.hh | |||
@@ -87,8 +87,8 @@ public: | |||
87 | */ | 87 | */ |
88 | FluxboxWindow *getWindow(unsigned int id); | 88 | FluxboxWindow *getWindow(unsigned int id); |
89 | const FluxboxWindow *getWindow(unsigned int id) const; | 89 | const FluxboxWindow *getWindow(unsigned int id) const; |
90 | const Windows &getWindowList() const { return windowList; } | 90 | const Windows &getWindowList() const { return m_windowlist; } |
91 | Windows &getWindowList() { return windowList; } | 91 | Windows &getWindowList() { return m_windowlist; } |
92 | 92 | ||
93 | bool isCurrent() const; | 93 | bool isCurrent() const; |
94 | bool isLastWindow(FluxboxWindow *window) const; | 94 | bool isLastWindow(FluxboxWindow *window) const; |
@@ -114,7 +114,7 @@ private: | |||
114 | static GroupList m_groups; ///< handle auto groupings | 114 | static GroupList m_groups; ///< handle auto groupings |
115 | 115 | ||
116 | WindowStack stackingList; | 116 | WindowStack stackingList; |
117 | Windows windowList; | 117 | Windows m_windowlist; |
118 | 118 | ||
119 | std::string m_name; ///< name of this workspace | 119 | std::string m_name; ///< name of this workspace |
120 | unsigned int m_id; ///< id, obsolete, this should be in BScreen | 120 | unsigned int m_id; ///< id, obsolete, this should be in BScreen |