diff options
author | fluxgen <fluxgen> | 2007-10-24 19:38:27 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2007-10-24 19:38:27 (GMT) |
commit | a092d3fc1b351a4c6ea1d95757b5244bf86b8a39 (patch) | |
tree | c6680f8a1e5cc4eec176d8d608bbd08dc95910ec /src/Workspace.cc | |
parent | e7513df45fce2bfbbac8b764e07627dfe36e6ba5 (diff) | |
download | fluxbox_pavel-a092d3fc1b351a4c6ea1d95757b5244bf86b8a39.zip fluxbox_pavel-a092d3fc1b351a4c6ea1d95757b5244bf86b8a39.tar.bz2 |
fixed gcc 2.96 compile problem
Diffstat (limited to 'src/Workspace.cc')
-rw-r--r-- | src/Workspace.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Workspace.cc b/src/Workspace.cc index 73ed077..cd899c6 100644 --- a/src/Workspace.cc +++ b/src/Workspace.cc | |||
@@ -136,7 +136,7 @@ void Workspace::hideAll(bool interrupt_moving) { | |||
136 | void Workspace::removeAll(unsigned int dest) { | 136 | void Workspace::removeAll(unsigned int dest) { |
137 | Windows tmp_list(m_windowlist); | 137 | Windows tmp_list(m_windowlist); |
138 | Windows::iterator it = tmp_list.begin(); | 138 | Windows::iterator it = tmp_list.begin(); |
139 | Windows::const_iterator it_end = tmp_list.end(); | 139 | Windows::iterator it_end = tmp_list.end(); |
140 | for (; it != it_end; ++it) | 140 | for (; it != it_end; ++it) |
141 | m_screen.sendToWorkspace(dest, *it, false); | 141 | m_screen.sendToWorkspace(dest, *it, false); |
142 | } | 142 | } |