X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ce3ed50dbe32d118321082db84c3a9abb047d5b7..e306597309a120f2ae91385c731a5cb2722c52aa:/src/common/timercmn.cpp?ds=inline diff --git a/src/common/timercmn.cpp b/src/common/timercmn.cpp index 369b3b73d2..34c14440b6 100644 --- a/src/common/timercmn.cpp +++ b/src/common/timercmn.cpp @@ -136,7 +136,7 @@ bool wxGetLocalTime(long *timeZone, int *dstObserved) struct tm *tp; time(&t0); tp = localtime(&t0); - *timeZone = timezone; // tp->tm_gmtoff; // ??? + *timeZone = _timezone; // tp->tm_gmtoff; // ??? *dstObserved = tp->tm_isdst; #elif defined(__MINGW32__) time_t t0;