aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/ImageControl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/FbTk/ImageControl.cc')
-rw-r--r--src/FbTk/ImageControl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FbTk/ImageControl.cc b/src/FbTk/ImageControl.cc
index 394939a..1281b56 100644
--- a/src/FbTk/ImageControl.cc
+++ b/src/FbTk/ImageControl.cc
@@ -112,7 +112,7 @@ ImageControl::ImageControl(int screen_num, bool dither,
112 112
113 if (cache_timeout && s_timed_cache) { 113 if (cache_timeout && s_timed_cache) {
114 m_timer.setTimeout(cache_timeout); 114 m_timer.setTimeout(cache_timeout);
115 RefCount<Command> clean_cache(new SimpleCommand<ImageControl>(*this, &ImageControl::cleanCache)); 115 RefCount<Command<void> > clean_cache(new SimpleCommand<ImageControl>(*this, &ImageControl::cleanCache));
116 m_timer.setCommand(clean_cache); 116 m_timer.setCommand(clean_cache);
117 m_timer.start(); 117 m_timer.start();
118 } 118 }