aboutsummaryrefslogtreecommitdiff
path: root/src/AttentionNoticeHandler.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/AttentionNoticeHandler.cc')
-rw-r--r--src/AttentionNoticeHandler.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/AttentionNoticeHandler.cc b/src/AttentionNoticeHandler.cc
index 9052319..7edd8e2 100644
--- a/src/AttentionNoticeHandler.cc
+++ b/src/AttentionNoticeHandler.cc
@@ -93,7 +93,7 @@ void AttentionNoticeHandler::addAttention(Focusable &client) {
93 93
94 // update _NET_WM_STATE atom 94 // update _NET_WM_STATE atom
95 if (client.fbwindow()) 95 if (client.fbwindow())
96 client.fbwindow()->stateSig().notify(); 96 client.fbwindow()->stateSig().emit(*client.fbwindow());
97} 97}
98 98
99void AttentionNoticeHandler::windowFocusChanged(Focusable& win) { 99void AttentionNoticeHandler::windowFocusChanged(Focusable& win) {
@@ -113,7 +113,7 @@ void AttentionNoticeHandler::updateWindow(Focusable& win, bool died) {
113 // update _NET_WM_STATE atom if the window is not dead 113 // update _NET_WM_STATE atom if the window is not dead
114 FluxboxWindow *fbwin = win.fbwindow(); 114 FluxboxWindow *fbwin = win.fbwindow();
115 if (fbwin && ! died) 115 if (fbwin && ! died)
116 fbwin->stateSig().notify(); 116 fbwin->stateSig().emit(*fbwin);
117 117
118} 118}
119 119