aboutsummaryrefslogtreecommitdiff
path: root/src/Workspace.cc
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2007-10-24 19:38:27 (GMT)
committerfluxgen <fluxgen>2007-10-24 19:38:27 (GMT)
commita092d3fc1b351a4c6ea1d95757b5244bf86b8a39 (patch)
treec6680f8a1e5cc4eec176d8d608bbd08dc95910ec /src/Workspace.cc
parente7513df45fce2bfbbac8b764e07627dfe36e6ba5 (diff)
downloadfluxbox-a092d3fc1b351a4c6ea1d95757b5244bf86b8a39.zip
fluxbox-a092d3fc1b351a4c6ea1d95757b5244bf86b8a39.tar.bz2
fixed gcc 2.96 compile problem
Diffstat (limited to 'src/Workspace.cc')
-rw-r--r--src/Workspace.cc2
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) {
136void Workspace::removeAll(unsigned int dest) { 136void 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}