]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/benchmarks/graphics.cpp
Fix wxMenu::GetTitle() before the menu is appended to the menu bar.
[wxWidgets.git] / tests / benchmarks / graphics.cpp
index 4366073f2bf44a1770c0339c7365929b318e65e4..801e8f9a35cf8ec59c02287ad30d8557f9fecf17 100644 (file)
@@ -3,7 +3,6 @@
 // Purpose:     Some benchmarks for measuring graphics operations performance
 // Author:      Vadim Zeitlin
 // Created:     2008-04-13
-// RCS-ID:      $Id$
 // Copyright:   (c) 2008 Vadim Zeitlin <vadim@wxwidgets.org>
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
@@ -203,7 +202,7 @@ private:
 
         const long t = sw.Time();
 
-        wxPrintf("%ld images done in %ldms = %gus/image or %d FPS\n",
+        wxPrintf("%ld images done in %ldms = %gus/image or %ld FPS\n",
                  opts.numIters, t, (1000. * t)/opts.numIters,
                  (1000*opts.numIters + t - 1)/t);
 
@@ -369,7 +368,7 @@ private:
 
         const long t = sw.Time();
 
-        wxPrintf("%ld images done in %ldms = %gus/image or %d FPS\n",
+        wxPrintf("%ld images done in %ldms = %gus/image or %ld FPS\n",
                  opts.numIters, t, (1000. * t)/opts.numIters,
                  (1000*opts.numIters + t - 1)/t);
     }
@@ -417,7 +416,7 @@ private:
 
         const long t = sw.Time();
 
-        wxPrintf("%ld raw bitmaps done in %ldms = %gus/bitmap or %d FPS\n",
+        wxPrintf("%ld raw bitmaps done in %ldms = %gus/bitmap or %ld FPS\n",
                  opts.numIters, t, (1000. * t)/opts.numIters,
                  (1000*opts.numIters + t - 1)/t);
     }