diff options
Diffstat (limited to 'src/Screen.cc')
-rw-r--r-- | src/Screen.cc | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/Screen.cc b/src/Screen.cc index 6d45427..e39dc1c 100644 --- a/src/Screen.cc +++ b/src/Screen.cc | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Screen.cc,v 1.216 2003/08/12 00:27:57 fluxgen Exp $ | 25 | // $Id: Screen.cc,v 1.217 2003/08/12 01:03:25 fluxgen Exp $ |
26 | 26 | ||
27 | 27 | ||
28 | #include "Screen.hh" | 28 | #include "Screen.hh" |
@@ -773,11 +773,8 @@ void BScreen::removeClient(WinClient &client) { | |||
773 | Fluxbox::instance()->revertFocus(focused->screen()); | 773 | Fluxbox::instance()->revertFocus(focused->screen()); |
774 | } | 774 | } |
775 | 775 | ||
776 | Workspaces::iterator workspace_it = getWorkspacesList().begin(); | 776 | for_each(getWorkspacesList().begin(), getWorkspacesList().end(), |
777 | Workspaces::iterator workspace_it_end = getWorkspacesList().end(); | 777 | mem_fun(&Workspace::updateClientmenu)); |
778 | for (; workspace_it != workspace_it_end; ++workspace_it) { | ||
779 | (*workspace_it)->removeWindow(client); | ||
780 | } | ||
781 | 778 | ||
782 | // remove any grouping this is expecting | 779 | // remove any grouping this is expecting |
783 | Groupables::iterator it = m_expecting_groups.begin(); | 780 | Groupables::iterator it = m_expecting_groups.begin(); |
@@ -791,8 +788,7 @@ void BScreen::removeClient(WinClient &client) { | |||
791 | } | 788 | } |
792 | // the client could be on icon menu so we update it | 789 | // the client could be on icon menu so we update it |
793 | updateIconMenu(); | 790 | updateIconMenu(); |
794 | // finaly send notify signal | 791 | |
795 | updateNetizenWindowDel(client.window()); | ||
796 | } | 792 | } |
797 | 793 | ||
798 | FluxboxWindow *BScreen::getIcon(unsigned int index) { | 794 | FluxboxWindow *BScreen::getIcon(unsigned int index) { |