]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/timercmn.cpp
calling insert("") would provoke an assert - now it's just ignored
[wxWidgets.git] / src / common / timercmn.cpp
index a13496beff94f2195c59831626a1975b49d7bbdc..2fbcb4c90630ee555c5cfd5f0b28cc0834d99015 100644 (file)
@@ -144,7 +144,7 @@ bool wxGetLocalTime(long *timeZone, int *dstObserved)
   *dstObserved = tp->tm_isdst;
 #else
 
-#if (((defined(__SYSV__) && !defined(__HPUX__)) || defined(__MSDOS__) || defined(__WINDOWS__)) && !defined(__GNUWIN32__))
+#if (((defined(__SYSV__) && !defined(__HPUX__)) || defined(__MSDOS__) || defined(__WXMSW__)) && !defined(__GNUWIN32__))
 #ifdef __BORLANDC__
   /* Borland uses underscores */
   *timeZone = _timezone;
@@ -168,6 +168,8 @@ bool wxGetLocalTime(long *timeZone, int *dstObserved)
   *timeZone = tp->tm_gmtoff; // ???
   *dstObserved = tp->tm_isdst;
 #endif
+#elif defined(__WXSTUBS__)
+  return FALSE;
 #else
 // #error wxGetLocalTime not implemented.
   struct timeval tp;