diff options
author | Henrik Kinnunen <fluxgen@fluxbox.org> | 2008-09-21 17:32:40 (GMT) |
---|---|---|
committer | Henrik Kinnunen <fluxgen@fluxbox.org> | 2008-09-21 17:32:40 (GMT) |
commit | 52e22a0304ef108e036cecc7c8808dc0bcf8d77b (patch) | |
tree | e3f3d36b84be954b8193262e77468d72a325326f /src/FocusControl.cc | |
parent | d05804e6661d4976ba52ef8727ec8387e2e3bba1 (diff) | |
download | fluxbox_pavel-52e22a0304ef108e036cecc7c8808dc0bcf8d77b.zip fluxbox_pavel-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.cc | 4 |
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 | ||
421 | void FocusControl::removeWindow(Focusable &win) { | 421 | void 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 | ||
436 | void FocusControl::shutdown() { | 436 | void FocusControl::shutdown() { |