diff options
author | Henrik Kinnunen <fluxgen@fluxbox.org> | 2008-09-28 08:46:49 (GMT) |
---|---|---|
committer | Henrik Kinnunen <fluxgen@fluxbox.org> | 2008-09-28 08:46:49 (GMT) |
commit | bcf37890b617730cfded161b9a3d18f7c377e724 (patch) | |
tree | d17e0fe6ac69d023fba66fdc1d176c16174e6a1b /src/FocusControl.cc | |
parent | ed53f3c623e7c3ae35672b33ae3b52759dc1a6ed (diff) | |
download | fluxbox_pavel-bcf37890b617730cfded161b9a3d18f7c377e724.zip fluxbox_pavel-bcf37890b617730cfded161b9a3d18f7c377e724.tar.bz2 |
Change focused signal 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 6533ac1..9c531bb 100644 --- a/src/FocusControl.cc +++ b/src/FocusControl.cc | |||
@@ -560,9 +560,9 @@ void FocusControl::setFocusedWindow(WinClient *client) { | |||
560 | 560 | ||
561 | // update AtomHandlers and/or other stuff... | 561 | // update AtomHandlers and/or other stuff... |
562 | if (screen) | 562 | if (screen) |
563 | screen->focusedWindowSig().notify(); | 563 | screen->focusedWindowSig().emit(*screen, s_focused_fbwindow, s_focused_window); |
564 | if (old_screen && screen != old_screen) | 564 | if (old_screen && screen != old_screen) |
565 | old_screen->focusedWindowSig().notify(); | 565 | old_screen->focusedWindowSig().emit(*old_screen, s_focused_fbwindow, s_focused_window); |
566 | } | 566 | } |
567 | 567 | ||
568 | ////////////////////// FocusControl RESOURCES | 568 | ////////////////////// FocusControl RESOURCES |