From: Vadim Zeitlin Date: Thu, 22 Jan 2004 11:26:15 +0000 (+0000) Subject: make it possible to restart timer with a simple Start(), as in other ports X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/368ba124ef595673529f7089cd2089adbcd00e6b make it possible to restart timer with a simple Start(), as in other ports git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25293 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/mac/carbon/timer.cpp b/src/mac/carbon/timer.cpp index 1c15383290..4fcae35e09 100644 --- a/src/mac/carbon/timer.cpp +++ b/src/mac/carbon/timer.cpp @@ -108,7 +108,6 @@ bool wxTimer::Start(int milliseconds,bool mode) wxCHECK_MSG( m_milli > 0, FALSE, wxT("invalid value for timer timeour") ); wxCHECK_MSG( m_info->m_task.tmAddr == NULL , FALSE, wxT("attempting to restart a timer") ); - m_milli = milliseconds; #if defined(UNIVERSAL_INTERFACES_VERSION) && (UNIVERSAL_INTERFACES_VERSION >= 0x0340) m_info->m_task.tmAddr = NewTimerUPP( MacTimerProc ) ; #else diff --git a/src/mac/timer.cpp b/src/mac/timer.cpp index 1c15383290..4fcae35e09 100644 --- a/src/mac/timer.cpp +++ b/src/mac/timer.cpp @@ -108,7 +108,6 @@ bool wxTimer::Start(int milliseconds,bool mode) wxCHECK_MSG( m_milli > 0, FALSE, wxT("invalid value for timer timeour") ); wxCHECK_MSG( m_info->m_task.tmAddr == NULL , FALSE, wxT("attempting to restart a timer") ); - m_milli = milliseconds; #if defined(UNIVERSAL_INTERFACES_VERSION) && (UNIVERSAL_INTERFACES_VERSION >= 0x0340) m_info->m_task.tmAddr = NewTimerUPP( MacTimerProc ) ; #else