diff options
Diffstat (limited to 'src/Screen.cc')
-rw-r--r-- | src/Screen.cc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/Screen.cc b/src/Screen.cc index 8809609..2d55b31 100644 --- a/src/Screen.cc +++ b/src/Screen.cc | |||
@@ -339,7 +339,6 @@ BScreen::BScreen(FbTk::ResourceManager &rm, | |||
339 | const string &screenname, | 339 | const string &screenname, |
340 | const string &altscreenname, | 340 | const string &altscreenname, |
341 | int scrn, int num_layers) : | 341 | int scrn, int num_layers) : |
342 | m_clientlist_sig(*this), // client signal | ||
343 | m_iconlist_sig(*this), // icon list signal | 342 | m_iconlist_sig(*this), // icon list signal |
344 | m_workspace_area_sig(*this), // workspace area signal | 343 | m_workspace_area_sig(*this), // workspace area signal |
345 | m_focusedwindow_sig(*this), // focused window signal | 344 | m_focusedwindow_sig(*this), // focused window signal |
@@ -1130,7 +1129,7 @@ int BScreen::removeLastWorkspace() { | |||
1130 | if ((*it)->workspaceNumber() == wkspc->workspaceID()) | 1129 | if ((*it)->workspaceNumber() == wkspc->workspaceID()) |
1131 | (*it)->setWorkspace(wkspc->workspaceID()-1); | 1130 | (*it)->setWorkspace(wkspc->workspaceID()-1); |
1132 | } | 1131 | } |
1133 | m_clientlist_sig.notify(); | 1132 | m_clientlist_sig.emit(*this); |
1134 | 1133 | ||
1135 | //remove last workspace | 1134 | //remove last workspace |
1136 | m_workspaces_list.pop_back(); | 1135 | m_workspaces_list.pop_back(); |
@@ -1373,7 +1372,7 @@ FluxboxWindow *BScreen::createWindow(Window client) { | |||
1373 | else if (other) // should never happen | 1372 | else if (other) // should never happen |
1374 | win->moveClientRightOf(*other, *winclient); | 1373 | win->moveClientRightOf(*other, *winclient); |
1375 | 1374 | ||
1376 | m_clientlist_sig.notify(); | 1375 | m_clientlist_sig.emit(*this); |
1377 | 1376 | ||
1378 | FbTk::App::instance()->sync(false); | 1377 | FbTk::App::instance()->sync(false); |
1379 | return win; | 1378 | return win; |
@@ -1407,7 +1406,7 @@ FluxboxWindow *BScreen::createWindow(WinClient &client) { | |||
1407 | && win->focus()) | 1406 | && win->focus()) |
1408 | FocusControl::setFocusedWindow(&client); | 1407 | FocusControl::setFocusedWindow(&client); |
1409 | 1408 | ||
1410 | m_clientlist_sig.notify(); | 1409 | m_clientlist_sig.emit(*this); |
1411 | 1410 | ||
1412 | return win; | 1411 | return win; |
1413 | } | 1412 | } |