]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/timercmn.cpp
1. wxSpinButton fixed: it now sends EVT_SPIN_UP/DOWN messages (and unnecessary
[wxWidgets.git] / src / common / timercmn.cpp
index 3a0f166553ce4cbeed68bf5495df900792a2439a..fc09fd1313d28a431a6d1267b9cec4a8e6290b43 100644 (file)
@@ -136,14 +136,17 @@ long wxGetElapsedTime(bool resetTimer)
 #ifndef __VMS__
 bool wxGetLocalTime(long *timeZone, int *dstObserved)
 {
-#if defined(__MINGW32__) && defined(__EGCS__)
+#if defined(__MINGW32__) 
   time_t t0;
   struct tm *tp;
   time(&t0);
   tp = localtime(&t0);
   *timeZone = _timezone; // tp->tm_gmtoff; // ???
   *dstObserved = tp->tm_isdst;
-#elif defined(__MINGW32__)
+#elif 0
+  /* HH: This code apparently was needed by very old Mingw-gcc versions
+   * Modern mingw's don't need it. Since old gcc isn't supported anyway,
+   * I think this stuff can go */
   time_t t0;
   struct tm *tp;
   time(&t0);