aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--src/FbCommands.cc4
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ed7973c..8497187 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
1 (Format: Year/Month/Day) 1 (Format: Year/Month/Day)
2Changes for 1.0.0: 2Changes for 1.0.0:
3*07/10/13:
4 * deiconify windows via :Deiconify in reverse order (Mathias)
5 FbCommands.cc
3*07/10/08: 6*07/10/08:
4 * Changed default style to bloe 7 * Changed default style to bloe
5*07/10/07: 8*07/10/07:
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