Typo.
authorRobert Roebling <robert@roebling.de>
Tue, 15 Feb 2005 19:55:39 +0000 (19:55 +0000)
committerRobert Roebling <robert@roebling.de>
Tue, 15 Feb 2005 19:55:39 +0000 (19:55 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32084 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/stopwatch.cpp

index 901693c3e029ce61d1dd6b8a22d436f171e10c6c..ddf2f994a1b90fadff6034c1acec5bd6bce5e50b 100644 (file)
 
 void wxStopWatch::Start(long t)
 {
-#ifdef 0
-__WXMSW__
+#if 0
+// __WXMSW__
     LARGE_INTEGER frequency_li;
     ::QueryPerformanceFrequency( &frequency_li );
     m_frequency = frequency_li.QuadPart;
@@ -135,8 +135,8 @@ __WXMSW__
 
 long wxStopWatch::GetElapsedTime() const
 {
-#ifdef 0
-__WXMSW__
+#if 0
+//__WXMSW__
     if (m_frequency == 0)
     {
         return (wxGetLocalTimeMillis() - m_t0).GetLo();