]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/timercmn.cpp
Improved selection mode handling in wxGrid::SelectBlock
[wxWidgets.git] / src / common / timercmn.cpp
index 84053540a89f9b4036d259efad8da382bd993c0d..f6148e0aa91db1a73a85bfd1ce21ce968a8598e8 100644 (file)
@@ -286,7 +286,6 @@ wxLongLong wxGetLocalTimeMillis()
     val *= wxGetLocalTime();
 
 #if defined(__VISAGECPP__)
-#warning "Possible clock skew bug in wxStopWatch!"
     DATETIME dt;
     ::DosGetDateTime(&dt);
     val += (dt.hundredths*10);
@@ -296,7 +295,9 @@ wxLongLong wxGetLocalTimeMillis()
     ::GetLocalTime(&st);
     val += st.wMilliseconds;
 #else
+#ifndef __VISUALC__
 #warning "wxStopWatch will be up to second resolution!"
+#endif
 #endif
 
     return val;