diff options
Diffstat (limited to 'src/FbCommands.cc')
-rw-r--r-- | src/FbCommands.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/FbCommands.cc b/src/FbCommands.cc index 2527ccf..f536fd8 100644 --- a/src/FbCommands.cc +++ b/src/FbCommands.cc | |||
@@ -433,8 +433,8 @@ void DeiconifyCmd::execute() { | |||
433 | // we need to make a copy of the list of icons, or else our iterator can | 433 | // we need to make a copy of the list of icons, or else our iterator can |
434 | // become invalid | 434 | // become invalid |
435 | BScreen::Icons icon_list = screen->iconList(); | 435 | BScreen::Icons icon_list = screen->iconList(); |
436 | BScreen::Icons::iterator it = icon_list.begin(); | 436 | BScreen::Icons::reverse_iterator it = icon_list.rbegin(); |
437 | BScreen::Icons::iterator itend= icon_list.end(); | 437 | BScreen::Icons::reverse_iterator itend= icon_list.rend(); |
438 | unsigned int workspace_num= screen->currentWorkspaceID(); | 438 | unsigned int workspace_num= screen->currentWorkspaceID(); |
439 | unsigned int old_workspace_num; | 439 | unsigned int old_workspace_num; |
440 | 440 | ||