aboutsummaryrefslogtreecommitdiff
path: root/src/FocusControl.cc
diff options
context:
space:
mode:
authorHenrik Kinnunen <fluxgen@fluxbox.org>2008-09-21 17:32:40 (GMT)
committerHenrik Kinnunen <fluxgen@fluxbox.org>2008-09-21 17:32:40 (GMT)
commit52e22a0304ef108e036cecc7c8808dc0bcf8d77b (patch)
treee3f3d36b84be954b8193262e77468d72a325326f /src/FocusControl.cc
parentd05804e6661d4976ba52ef8727ec8387e2e3bba1 (diff)
downloadfluxbox-52e22a0304ef108e036cecc7c8808dc0bcf8d77b.zip
fluxbox-52e22a0304ef108e036cecc7c8808dc0bcf8d77b.tar.bz2
Changed client list signal in BScreen to use the new signal system
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() {