deiconify windows via :Deiconify in reverse order

This commit is contained in:
mathias 2007-10-13 12:43:22 +00:00
parent 7c11e76911
commit cfb1e06df2
2 changed files with 5 additions and 2 deletions

View file

@ -1,5 +1,8 @@
(Format: Year/Month/Day)
Changes for 1.0.0:
*07/10/13:
* deiconify windows via :Deiconify in reverse order (Mathias)
FbCommands.cc
*07/10/08:
* Changed default style to bloe
*07/10/07:

View file

@ -403,8 +403,8 @@ void DeiconifyCmd::execute() {
// we need to make a copy of the list of icons, or else our iterator can
// become invalid
BScreen::Icons icon_list = screen->iconList();
BScreen::Icons::iterator it = icon_list.begin();
BScreen::Icons::iterator itend= icon_list.end();
BScreen::Icons::reverse_iterator it = icon_list.rbegin();
BScreen::Icons::reverse_iterator itend= icon_list.rend();
unsigned int workspace_num= screen->currentWorkspaceID();
unsigned int old_workspace_num;