]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/timercmn.cpp
moved wxDash typedef to gdicmn.h
[wxWidgets.git] / src / common / timercmn.cpp
index 440acfb8dc9bbeebd081acce9ce76c582dd16557..f6148e0aa91db1a73a85bfd1ce21ce968a8598e8 100644 (file)
@@ -51,9 +51,6 @@
 
 #if defined(__WIN32__) && !defined(HAVE_FTIME)
     #define HAVE_FTIME
-    #ifdef (__VISUALC__)
-        #define ftime _ftime
-    #endif
 #endif
 
 #include <time.h>
@@ -289,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);
@@ -299,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;