X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b63dc1c140a05a1169386d883387130556ac84c2..11a23db53128bf244a089123b7fd27deb577a889:/src/gtk/timer.cpp diff --git a/src/gtk/timer.cpp b/src/gtk/timer.cpp index 228e3e1f6e..5e819097eb 100644 --- a/src/gtk/timer.cpp +++ b/src/gtk/timer.cpp @@ -1,8 +1,7 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: gtk/timer.cpp +// Name: src/gtk/timer.cpp // Purpose: wxTimer implementation // Author: Robert Roebling -// Id: $Id$ // Copyright: (c) 1998 Robert Roebling // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -55,7 +54,7 @@ bool wxGTKTimerImpl::Start(int millisecs, bool oneShot) if ( !wxTimerImpl::Start(millisecs, oneShot) ) return false; - wxASSERT_MSG( !m_sourceId, _T("shouldn't be still running") ); + wxASSERT_MSG( !m_sourceId, wxT("shouldn't be still running") ); m_sourceId = g_timeout_add(m_milli, timeout_callback, this); @@ -64,7 +63,7 @@ bool wxGTKTimerImpl::Start(int millisecs, bool oneShot) void wxGTKTimerImpl::Stop() { - wxASSERT_MSG( m_sourceId, _T("should be running") ); + wxASSERT_MSG( m_sourceId, wxT("should be running") ); g_source_remove(m_sourceId); m_sourceId = 0;