]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/datetime.cpp
Warning fix.
[wxWidgets.git] / src / common / datetime.cpp
index 7c4dc7d5afda2bd75603e37808b7a0ca2f869b2e..f69eeb9e92fa3545fa5872b604c27cab70f943f8 100644 (file)
@@ -2261,11 +2261,11 @@ wxString wxDateTime::Format(const wxChar *format, const TimeZone& tz) const
 {
     wxCHECK_MSG( format, wxEmptyString, _T("NULL format in wxDateTime::Format") );
 
-    time_t time = GetTicks();
-
     // we have to use our own implementation if the date is out of range of
     // strftime() or if we use non standard specificators
 #ifdef HAVE_STRFTIME
+    time_t time = GetTicks();
+
     if ( (time != (time_t)-1) && !wxStrstr(format, _T("%l")) )
     {
         // use strftime()