diff options
Diffstat (limited to 'src/AttentionNoticeHandler.cc')
-rw-r--r-- | src/AttentionNoticeHandler.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/AttentionNoticeHandler.cc b/src/AttentionNoticeHandler.cc index 0aaf266..3ed9bf3 100644 --- a/src/AttentionNoticeHandler.cc +++ b/src/AttentionNoticeHandler.cc | |||
@@ -67,10 +67,10 @@ void AttentionNoticeHandler::addAttention(Focusable &client) { | |||
67 | ResourceManager &res = client.screen().resourceManager(); | 67 | ResourceManager &res = client.screen().resourceManager(); |
68 | std::string res_name = client.screen().name() + ".demandsAttentionTimeout"; | 68 | std::string res_name = client.screen().name() + ".demandsAttentionTimeout"; |
69 | std::string res_alt_name = client.screen().name() + ".DemandsAttentionTimeout"; | 69 | std::string res_alt_name = client.screen().name() + ".DemandsAttentionTimeout"; |
70 | Resource<int> *timeout_res = dynamic_cast<Resource<int>* >(res.findResource(res_name)); | 70 | IntResource *timeout_res = dynamic_cast<IntResource* >(res.findResource(res_name)); |
71 | if (timeout_res == 0) { | 71 | if (timeout_res == 0) { |
72 | // no resource, create one and add it to managed resources | 72 | // no resource, create one and add it to managed resources |
73 | timeout_res = new FbTk::Resource<int>(res, 500, res_name, res_alt_name); | 73 | timeout_res = new FbTk::IntResource(res, 500, res_name, res_alt_name); |
74 | client.screen().addManagedResource(timeout_res); | 74 | client.screen().addManagedResource(timeout_res); |
75 | } | 75 | } |
76 | // disable if timeout is zero | 76 | // disable if timeout is zero |