diff options
Diffstat (limited to 'src')
-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 2faa267..b7ee941 100644 --- a/src/FbCommands.cc +++ b/src/FbCommands.cc | |||
@@ -403,8 +403,8 @@ void DeiconifyCmd::execute() { | |||
403 | // we need to make a copy of the list of icons, or else our iterator can | 403 | // we need to make a copy of the list of icons, or else our iterator can |
404 | // become invalid | 404 | // become invalid |
405 | BScreen::Icons icon_list = screen->iconList(); | 405 | BScreen::Icons icon_list = screen->iconList(); |
406 | BScreen::Icons::iterator it = icon_list.begin(); | 406 | BScreen::Icons::reverse_iterator it = icon_list.rbegin(); |
407 | BScreen::Icons::iterator itend= icon_list.end(); | 407 | BScreen::Icons::reverse_iterator itend= icon_list.rend(); |
408 | unsigned int workspace_num= screen->currentWorkspaceID(); | 408 | unsigned int workspace_num= screen->currentWorkspaceID(); |
409 | unsigned int old_workspace_num; | 409 | unsigned int old_workspace_num; |
410 | 410 | ||