aboutsummaryrefslogtreecommitdiff
path: root/backends/morphos/morphos_timer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'backends/morphos/morphos_timer.cpp')
-rw-r--r--backends/morphos/morphos_timer.cpp4
1 files changed, 2 insertions, 2 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);
}