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);
uint32 interval, l;
@ -67,8 +67,6 @@ int DefaultTimerManager::handler(int t) {
}
}
}
return t;
}
bool DefaultTimerManager::installTimerProc(TimerProc procedure, int32 interval, void *refCon) {

View File

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