Removed unused return value & param from DefaultTimerManager::handler()

svn-id: r24447
This commit is contained in:
Max Horn 2006-10-22 16:05:59 +00:00
parent f4d8920f2b
commit e767681dcf
2 changed files with 2 additions and 4 deletions

View file

@ -47,7 +47,7 @@ DefaultTimerManager::~DefaultTimerManager() {
} }
} }
int DefaultTimerManager::handler(int t) { void DefaultTimerManager::handler() {
Common::StackLock lock(_mutex); Common::StackLock lock(_mutex);
uint32 interval, l; uint32 interval, l;
@ -67,8 +67,6 @@ int DefaultTimerManager::handler(int t) {
} }
} }
} }
return t;
} }
bool DefaultTimerManager::installTimerProc(TimerProc procedure, int32 interval, void *refCon) { bool DefaultTimerManager::installTimerProc(TimerProc procedure, int32 interval, void *refCon) {

View file

@ -51,7 +51,7 @@ public:
void removeTimerProc(TimerProc proc); void removeTimerProc(TimerProc proc);
// Timer callback, to be invoked at regular time intervals by the backend. // Timer callback, to be invoked at regular time intervals by the backend.
int handler(int t); void handler();
}; };
#endif #endif