X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c2ca375c5620209d77a88d2d378bdcdedbc82e7e..2028c33ab5a39a12bd410ac953731a56ad6377ba:/src/gtk1/timer.cpp diff --git a/src/gtk1/timer.cpp b/src/gtk1/timer.cpp index b90de7064c..f099957c69 100644 --- a/src/gtk1/timer.cpp +++ b/src/gtk1/timer.cpp @@ -47,7 +47,7 @@ bool wxGTKTimerImpl::Start(int millisecs, bool oneShot) if ( !wxTimerImpl::Start(millisecs, oneShot) ) return false; - wxASSERT_MSG( m_tag == -1, _T("shouldn't be still running") ); + wxASSERT_MSG( m_tag == -1, wxT("shouldn't be still running") ); m_tag = gtk_timeout_add( m_milli, timeout_callback, this ); @@ -56,7 +56,7 @@ bool wxGTKTimerImpl::Start(int millisecs, bool oneShot) void wxGTKTimerImpl::Stop() { - wxASSERT_MSG( m_tag != -1, _T("should be running") ); + wxASSERT_MSG( m_tag != -1, wxT("should be running") ); gtk_timeout_remove( m_tag ); m_tag = -1;