diff options
Diffstat (limited to 'src/Workspace.cc')
-rw-r--r-- | src/Workspace.cc | 18 |
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 | ||
218 | void Workspace::showAll(void) { | 218 | void 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 | ||
227 | void Workspace::hideAll(void) { | 227 | void 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 | ||
237 | void Workspace::removeAll(void) { | 237 | void 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 | */ |
460 | void Workspace::shutdown() { | 460 | void 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()) { |