X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3d257b8db10b5f464d896ff0d4249237d8f587a1..9a3952fad895c37a0ae8c34a968b7ae7ff8b9a55:/src/gtk/timer.cpp diff --git a/src/gtk/timer.cpp b/src/gtk/timer.cpp index c5e8bd37ad..eb7a15fbb5 100644 --- a/src/gtk/timer.cpp +++ b/src/gtk/timer.cpp @@ -68,9 +68,9 @@ bool wxTimer::Start( int millisecs, bool oneShot ) (void)wxTimerBase::Start(millisecs, oneShot); if (m_tag != -1) - gtk_timeout_remove( m_tag ); + g_source_remove( m_tag ); - m_tag = gtk_timeout_add( m_milli, timeout_callback, this ); + m_tag = g_timeout_add( m_milli, timeout_callback, this ); return TRUE; } @@ -79,7 +79,7 @@ void wxTimer::Stop() { if (m_tag != -1) { - gtk_timeout_remove( m_tag ); + g_source_remove( m_tag ); m_tag = -1; } }