summaryrefslogtreecommitdiff
path: root/src/FocusControl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/FocusControl.cc')
-rw-r--r--src/FocusControl.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/FocusControl.cc b/src/FocusControl.cc
index cead827..6533ac1 100644
--- a/src/FocusControl.cc
+++ b/src/FocusControl.cc
@@ -415,7 +415,7 @@ void FocusControl::removeClient(WinClient &client) {
415 415
416 m_focused_list.remove(client); 416 m_focused_list.remove(client);
417 m_creation_order_list.remove(client); 417 m_creation_order_list.remove(client);
418 client.screen().clientListSig().notify(); 418 client.screen().clientListSig().emit(client.screen());
419} 419}
420 420
421void FocusControl::removeWindow(Focusable &win) { 421void FocusControl::removeWindow(Focusable &win) {
@@ -430,7 +430,7 @@ void FocusControl::removeWindow(Focusable &win) {
430 430
431 m_focused_win_list.remove(win); 431 m_focused_win_list.remove(win);
432 m_creation_order_win_list.remove(win); 432 m_creation_order_win_list.remove(win);
433 win.screen().clientListSig().notify(); 433 win.screen().clientListSig().emit(win.screen());
434} 434}
435 435
436void FocusControl::shutdown() { 436void FocusControl::shutdown() {