aboutsummaryrefslogtreecommitdiff
path: root/src/Workspace.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-11-03 15:02:21 (GMT)
committerfluxgen <fluxgen>2002-11-03 15:02:21 (GMT)
commit720423af0182d91e810a9d69936c16583352ce32 (patch)
tree4ce7680f611d4f7bd28551288cd161d1d9221699 /src/Workspace.hh
parent239c6739651ee049eab10dd65ed605da1eb06056 (diff)
downloadfluxbox-720423af0182d91e810a9d69936c16583352ce32.zip
fluxbox-720423af0182d91e810a9d69936c16583352ce32.tar.bz2
name change of the list
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 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