aboutsummaryrefslogtreecommitdiff
path: root/src/Workspace.cc
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-01-13 12:59:26 (GMT)
committerfluxgen <fluxgen>2003-01-13 12:59:26 (GMT)
commit00e10146668a4a04f13838d6df651870589b19e2 (patch)
treeca17523d35fc3bfc80b95a7a221952cdbe6baa8e /src/Workspace.cc
parent78e01c7c6c77dc855553a4ef16024bd9f32c46fc (diff)
downloadfluxbox-00e10146668a4a04f13838d6df651870589b19e2.zip
fluxbox-00e10146668a4a04f13838d6df651870589b19e2.tar.bz2
minor comment fix
Diffstat (limited to 'src/Workspace.cc')
-rw-r--r--src/Workspace.cc18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/Workspace.cc b/src/Workspace.cc
index c089043..3354566 100644
--- a/src/Workspace.cc
+++ b/src/Workspace.cc
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: Workspace.cc,v 1.42 2003/01/12 18:51:46 fluxgen Exp $ 25// $Id: Workspace.cc,v 1.43 2003/01/13 12:59:26 fluxgen Exp $
26 26
27#include "Workspace.hh" 27#include "Workspace.hh"
28 28
@@ -215,7 +215,7 @@ int Workspace::removeWindow(FluxboxWindow *w) {
215} 215}
216 216
217 217
218void Workspace::showAll(void) { 218void Workspace::showAll() {
219 WindowStack::iterator it = stackingList.begin(); 219 WindowStack::iterator it = stackingList.begin();
220 WindowStack::iterator it_end = stackingList.end(); 220 WindowStack::iterator it_end = stackingList.end();
221 for (; it != it_end; ++it) { 221 for (; it != it_end; ++it) {
@@ -224,7 +224,7 @@ void Workspace::showAll(void) {
224} 224}
225 225
226 226
227void Workspace::hideAll(void) { 227void Workspace::hideAll() {
228 WindowStack::reverse_iterator it = stackingList.rbegin(); 228 WindowStack::reverse_iterator it = stackingList.rbegin();
229 WindowStack::reverse_iterator it_end = stackingList.rend(); 229 WindowStack::reverse_iterator it_end = stackingList.rend();
230 for (; it != it_end; ++it) { 230 for (; it != it_end; ++it) {
@@ -234,7 +234,7 @@ void Workspace::hideAll(void) {
234} 234}
235 235
236 236
237void Workspace::removeAll(void) { 237void Workspace::removeAll() {
238 Windows::iterator it = m_windowlist.begin(); 238 Windows::iterator it = m_windowlist.begin();
239 Windows::const_iterator it_end = m_windowlist.end(); 239 Windows::const_iterator it_end = m_windowlist.end();
240 for (; it != it_end; ++it) { 240 for (; it != it_end; ++it) {
@@ -452,11 +452,11 @@ void Workspace::setName(const std::string &name) {
452 m_clientmenu.update(); 452 m_clientmenu.update();
453} 453}
454 454
455//------------ shutdown --------- 455/**
456// Calls restore on all windows 456 Calls restore on all windows
457// on the workspace and then 457 on the workspace and then
458// clears the m_windowlist 458 clears the m_windowlist
459//------------------------------- 459*/
460void Workspace::shutdown() { 460void Workspace::shutdown() {
461 // note: when the window dies it'll remove it self from the list 461 // note: when the window dies it'll remove it self from the list
462 while (!m_windowlist.empty()) { 462 while (!m_windowlist.empty()) {