diff options
author | fluxgen <fluxgen> | 2003-05-11 17:14:41 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2003-05-11 17:14:41 (GMT) |
commit | c188d1d39a57d9a16a220a0663024fcd919b0ad0 (patch) | |
tree | 54869068a6d3b55fcaa77d910687faa04554a581 /src/Gnome.cc | |
parent | 7149b4dd5b403cdb7a84ca627496aeb997322abf (diff) | |
download | fluxbox-c188d1d39a57d9a16a220a0663024fcd919b0ad0.zip fluxbox-c188d1d39a57d9a16a220a0663024fcd919b0ad0.tar.bz2 |
minor cleaning
Diffstat (limited to 'src/Gnome.cc')
-rw-r--r-- | src/Gnome.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Gnome.cc b/src/Gnome.cc index 6e4a8b7..72e8ddd 100644 --- a/src/Gnome.cc +++ b/src/Gnome.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: Gnome.cc,v 1.21 2003/05/11 13:36:10 fluxgen Exp $ | 22 | // $Id: Gnome.cc,v 1.22 2003/05/11 17:11:58 fluxgen Exp $ |
23 | 23 | ||
24 | #include "Gnome.hh" | 24 | #include "Gnome.hh" |
25 | 25 | ||
@@ -134,9 +134,9 @@ void Gnome::updateClientList(BScreen &screen) { | |||
134 | screen.getWorkspacesList().end(); | 134 | screen.getWorkspacesList().end(); |
135 | for (; workspace_it != workspace_it_end; ++workspace_it) { | 135 | for (; workspace_it != workspace_it_end; ++workspace_it) { |
136 | Workspace::Windows::iterator win_it = | 136 | Workspace::Windows::iterator win_it = |
137 | (*workspace_it)->getWindowList().begin(); | 137 | (*workspace_it)->windowList().begin(); |
138 | Workspace::Windows::iterator win_it_end = | 138 | Workspace::Windows::iterator win_it_end = |
139 | (*workspace_it)->getWindowList().end(); | 139 | (*workspace_it)->windowList().end(); |
140 | for (; win_it != win_it_end; ++win_it) | 140 | for (; win_it != win_it_end; ++win_it) |
141 | num += (*win_it)->numClients(); | 141 | num += (*win_it)->numClients(); |
142 | } | 142 | } |
@@ -154,9 +154,9 @@ void Gnome::updateClientList(BScreen &screen) { | |||
154 | 154 | ||
155 | // Fill in array of window ID's | 155 | // Fill in array of window ID's |
156 | Workspace::Windows::const_iterator it = | 156 | Workspace::Windows::const_iterator it = |
157 | (*workspace_it)->getWindowList().begin(); | 157 | (*workspace_it)->windowList().begin(); |
158 | Workspace::Windows::const_iterator it_end = | 158 | Workspace::Windows::const_iterator it_end = |
159 | (*workspace_it)->getWindowList().end(); | 159 | (*workspace_it)->windowList().end(); |
160 | for (; it != it_end; ++it) { | 160 | for (; it != it_end; ++it) { |
161 | // TODO! | 161 | // TODO! |
162 | //check if the window don't want to be visible in the list | 162 | //check if the window don't want to be visible in the list |