aboutsummaryrefslogtreecommitdiff
path: root/src/AttentionNoticeHandler.cc
diff options
context:
space:
mode:
authormarkt <markt>2007-04-01 07:16:17 (GMT)
committermarkt <markt>2007-04-01 07:16:17 (GMT)
commit92473d69cc773f7c164733d7c8d1584c4e7b567f (patch)
treecdc3b1dee6912fe11fb614983fd090f35d275799 /src/AttentionNoticeHandler.cc
parent49de038888f4d6f7623bed446edfccb7c67b50c8 (diff)
downloadfluxbox-92473d69cc773f7c164733d7c8d1584c4e7b567f.zip
fluxbox-92473d69cc773f7c164733d7c8d1584c4e7b567f.tar.bz2
just converting some old code to make future changes easier
Diffstat (limited to 'src/AttentionNoticeHandler.cc')
-rw-r--r--src/AttentionNoticeHandler.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/AttentionNoticeHandler.cc b/src/AttentionNoticeHandler.cc
index a80934a..02fa95c 100644
--- a/src/AttentionNoticeHandler.cc
+++ b/src/AttentionNoticeHandler.cc
@@ -101,9 +101,9 @@ void AttentionNoticeHandler::update(FbTk::Subject *subj) {
101 101
102 // all signals results in destruction of the notice 102 // all signals results in destruction of the notice
103 103
104 WinClient::WinClientSubj *winsubj = 104 Focusable::FocusSubject *winsubj =
105 static_cast<WinClient::WinClientSubj *>(subj); 105 static_cast<Focusable::FocusSubject *>(subj);
106 delete m_attentions[&winsubj->winClient()]; 106 delete m_attentions[&winsubj->win()];
107 m_attentions.erase(&winsubj->winClient()); 107 m_attentions.erase(&winsubj->win());
108} 108}
109 109