aboutsummaryrefslogtreecommitdiff
path: root/backends/timer/default/default-timer.h
diff options
context:
space:
mode:
authordhewg2011-03-22 11:53:10 +0100
committerdhewg2011-03-22 21:02:41 +0100
commit18d9654ca2b86033aff58c1e20ec9683cb97c47f (patch)
tree83c977305064caeee12bd1c9899b7c38e66d6917 /backends/timer/default/default-timer.h
parentbb12acfa0ffc0c1fe0a907e6b63c3dd0c2acaec5 (diff)
downloadscummvm-rg350-18d9654ca2b86033aff58c1e20ec9683cb97c47f.tar.gz
scummvm-rg350-18d9654ca2b86033aff58c1e20ec9683cb97c47f.tar.bz2
scummvm-rg350-18d9654ca2b86033aff58c1e20ec9683cb97c47f.zip
TIMER: Cleanup
Diffstat (limited to 'backends/timer/default/default-timer.h')
-rw-r--r--backends/timer/default/default-timer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/timer/default/default-timer.h b/backends/timer/default/default-timer.h
index e7ac3d122f..a4c7385ef9 100644
--- a/backends/timer/default/default-timer.h
+++ b/backends/timer/default/default-timer.h
@@ -40,9 +40,9 @@ private:
public:
DefaultTimerManager();
- ~DefaultTimerManager();
- bool installTimerProc(TimerProc proc, int32 interval, void *refCon);
- void removeTimerProc(TimerProc proc);
+ virtual ~DefaultTimerManager();
+ virtual bool installTimerProc(TimerProc proc, int32 interval, void *refCon);
+ virtual void removeTimerProc(TimerProc proc);
/**
* Timer callback, to be invoked at regular time intervals by the backend.