X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/86e9b8f28fc8db834628e1528e12f3eeb1f6e216..a7689c49fe02c0c065facf736ab28b19f5997b7c:/include/wx/unix/private/timer.h diff --git a/include/wx/unix/private/timer.h b/include/wx/unix/private/timer.h index 630676cb37..ceb107c3b1 100644 --- a/include/wx/unix/private/timer.h +++ b/include/wx/unix/private/timer.h @@ -39,7 +39,7 @@ public: // timer is running void MarkStopped() { - wxASSERT_MSG( m_isRunning, _T("stopping non-running timer?") ); + wxASSERT_MSG( m_isRunning, wxT("stopping non-running timer?") ); m_isRunning = false; } @@ -134,12 +134,6 @@ private: static wxTimerScheduler *ms_instance; }; -// this helper function currently only exists for Unix platforms but could be -// moved to wx/stopwatch.h if it turns out to be useful elsewhere -// -// returns the number of microseconds since the Epoch -extern wxUsecClock_t wxGetLocalTimeUsec(); - #endif // wxUSE_TIMER #endif // _WX_UNIX_PRIVATE_TIMER_H_