cleaner while loop
authorDana Jansens <danakj@orodu.net>
Sun, 16 Feb 2003 08:03:49 +0000 (08:03 +0000)
committerDana Jansens <danakj@orodu.net>
Sun, 16 Feb 2003 08:03:49 +0000 (08:03 +0000)
otk/application.cc

index afe06f8..c5889e8 100644 (file)
@@ -56,9 +56,8 @@ void Application::run(void)
 
   while (_appwidget_count > 0) {
     dispatchEvents();
-    if (_appwidget_count <= 0)
-      break;
-    Timer::dispatchTimers(); // fire pending events
+    if (_appwidget_count > 0)
+      Timer::dispatchTimers(); // fire pending events
   }
 }