aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorMax Horn2003-10-17 16:39:32 +0000
committerMax Horn2003-10-17 16:39:32 +0000
commitad2db089404e99a2750cd059237dc2a8579e045f (patch)
tree1067985d297a609ab32a6b45aee6508f330905ae /backends
parent96a8d0ec1cb7410d3790c822f2f9d5ce363daeb2 (diff)
downloadscummvm-rg350-ad2db089404e99a2750cd059237dc2a8579e045f.tar.gz
scummvm-rg350-ad2db089404e99a2750cd059237dc2a8579e045f.tar.bz2
scummvm-rg350-ad2db089404e99a2750cd059237dc2a8579e045f.zip
renamed some Timer methods
svn-id: r10868
Diffstat (limited to 'backends')
-rw-r--r--backends/morphos/morphos_timer.cpp4
-rw-r--r--backends/morphos/morphos_timer.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/backends/morphos/morphos_timer.cpp b/backends/morphos/morphos_timer.cpp
index 8226bd67c5..c41c63cf93 100644
--- a/backends/morphos/morphos_timer.cpp
+++ b/backends/morphos/morphos_timer.cpp
@@ -73,12 +73,12 @@ void Timer::release()
{
}
-bool Timer::installProcedure(TimerProc procedure, int32 interval)
+bool Timer::installTimerProc(TimerProc procedure, int32 interval)
{
return SendMsg(TSM_MSGID_ADDTIMER, procedure, interval);
}
-void Timer::releaseProcedure(TimerProc procedure)
+void Timer::removeTimerProc(TimerProc procedure)
{
SendMsg(TSM_MSGID_REMTIMER, procedure, 0);
}
diff --git a/backends/morphos/morphos_timer.h b/backends/morphos/morphos_timer.h
index de7e540fb0..cb717d7aeb 100644
--- a/backends/morphos/morphos_timer.h
+++ b/backends/morphos/morphos_timer.h
@@ -62,8 +62,8 @@ class Timer
bool init();
void release();
- bool installProcedure(TimerProc procedure, int32 interval);
- void releaseProcedure(TimerProc procedure);
+ bool installTimerProc(TimerProc procedure, int32 interval);
+ void removeTimerProc(TimerProc procedure);
protected:
bool SendMsg(ULONG MsgID, TimerProc procedure, LONG interval);