]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/benchmarks/bench.cpp
No changes, just fix a typo in a comment in docview event handling code.
[wxWidgets.git] / tests / benchmarks / bench.cpp
index 0d694e78262ffdb59d1e01145cf425526d3f25e4..90b5f017e3bef0d7d6066a5cf3fbb1c4bcd9ae2a 100644 (file)
@@ -3,9 +3,8 @@
 // Purpose:     Main file of the benchmarking suite
 // Author:      Vadim Zeitlin
 // Created:     2008-07-19
-// RCS-ID:      $Id$
 // Copyright:   (c) 2008 Vadim Zeitlin <vadim@wxwidgets.org>
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 // ============================================================================
 #include "wx/cmdline.h"
 #include "wx/stopwatch.h"
 
+#if wxUSE_GUI
+    #include "wx/frame.h"
+#endif
+
 #include "bench.h"
 
 // ----------------------------------------------------------------------------
@@ -294,6 +297,8 @@ int BenchApp::OnRun()
             wxPrintf("%.2f avg (min=%ld, max=%ld)\n",
                      (float)timeTotal / times, timeMin, timeMax);
         }
+
+        fflush(stdout);
     }
 
     return rc;