diff options
author | mathias <mathias> | 2007-10-13 12:43:22 (GMT) |
---|---|---|
committer | mathias <mathias> | 2007-10-13 12:43:22 (GMT) |
commit | cfb1e06df208d55d34da6995335d3fff67426c72 (patch) | |
tree | dc14c07dd02f55a1a83c631ef157fdddf65f1863 /src/FbCommands.cc | |
parent | 7c11e7691144626cfabddd7801152a7fdfc9a971 (diff) | |
download | fluxbox-cfb1e06df208d55d34da6995335d3fff67426c72.zip fluxbox-cfb1e06df208d55d34da6995335d3fff67426c72.tar.bz2 |
deiconify windows via :Deiconify in reverse order
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 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 | ||