diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Ewmh.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Ewmh.cc b/src/Ewmh.cc index a61d9a6..654a27e 100644 --- a/src/Ewmh.cc +++ b/src/Ewmh.cc | |||
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: Ewmh.cc,v 1.22 2003/05/11 13:36:10 fluxgen Exp $ | 22 | // $Id: Ewmh.cc,v 1.23 2003/05/11 17:06:02 fluxgen Exp $ |
23 | 23 | ||
24 | #include "Ewmh.hh" | 24 | #include "Ewmh.hh" |
25 | 25 | ||
@@ -135,9 +135,9 @@ void Ewmh::updateClientList(BScreen &screen) { | |||
135 | screen.getWorkspacesList().end(); | 135 | screen.getWorkspacesList().end(); |
136 | for (; workspace_it != workspace_it_end; ++workspace_it) { | 136 | for (; workspace_it != workspace_it_end; ++workspace_it) { |
137 | Workspace::Windows::iterator win_it = | 137 | Workspace::Windows::iterator win_it = |
138 | (*workspace_it)->getWindowList().begin(); | 138 | (*workspace_it)->windowList().begin(); |
139 | Workspace::Windows::iterator win_it_end = | 139 | Workspace::Windows::iterator win_it_end = |
140 | (*workspace_it)->getWindowList().end(); | 140 | (*workspace_it)->windowList().end(); |
141 | for (; win_it != win_it_end; ++win_it) { | 141 | for (; win_it != win_it_end; ++win_it) { |
142 | num += (*win_it)->numClients(); | 142 | num += (*win_it)->numClients(); |
143 | } | 143 | } |
@@ -163,9 +163,9 @@ void Ewmh::updateClientList(BScreen &screen) { | |||
163 | 163 | ||
164 | // Fill in array of window ID's | 164 | // Fill in array of window ID's |
165 | Workspace::Windows::const_iterator it = | 165 | Workspace::Windows::const_iterator it = |
166 | (*workspace_it)->getWindowList().begin(); | 166 | (*workspace_it)->windowList().begin(); |
167 | Workspace::Windows::const_iterator it_end = | 167 | Workspace::Windows::const_iterator it_end = |
168 | (*workspace_it)->getWindowList().end(); | 168 | (*workspace_it)->windowList().end(); |
169 | for (; it != it_end; ++it) { | 169 | for (; it != it_end; ++it) { |
170 | if ((*it)->numClients() == 1) | 170 | if ((*it)->numClients() == 1) |
171 | wl[win++] = (*it)->getClientWindow(); | 171 | wl[win++] = (*it)->getClientWindow(); |