]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/timer.cpp
revert nested event loop support for wxGTK1 because it causes applications hangs
[wxWidgets.git] / src / gtk1 / timer.cpp
index b90de7064c5aa1cfacadbc78dcf7d12af6f58662..523f2559abe703cb1da965126d783451b7d95a67 100644 (file)
@@ -1,8 +1,7 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        gtk/timer.cpp
+// Name:        src/gtk1/timer.cpp
 // Purpose:     wxTimer implementation
 // Author:      Robert Roebling
-// Id:          $Id$
 // Copyright:   (c) 1998 Robert Roebling
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
@@ -47,7 +46,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 +55,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;