]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/app.cpp
Line-up interfaces to use size_t for GetCount()s.
[wxWidgets.git] / src / gtk / app.cpp
index 1614d6c5f50f564a372f009983d03e820cdf5b50..987ce870f2d086826dac7eae79b2b615e2f5e5d2 100644 (file)
@@ -248,11 +248,11 @@ static gint wxapp_idle_callback( gpointer WXUNUSED(data) )
         wxTheApp->m_idleTag = 0;
     }
 
         wxTheApp->m_idleTag = 0;
     }
 
-    bool moreIdles = false;
+    bool moreIdles;
 
     // Send idle event to all who request them as long as
     // no events have popped up in the event queue.
 
     // Send idle event to all who request them as long as
     // no events have popped up in the event queue.
-    while (moreIdles = wxTheApp->ProcessIdle() && (gtk_events_pending() == 0))
+    while ( (moreIdles = wxTheApp->ProcessIdle()) && gtk_events_pending() == 0)
         ;
 
     // Release lock again
         ;
 
     // Release lock again