]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed bug in Set() on DST days (patch 1097811)
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 31 Jan 2005 01:39:54 +0000 (01:39 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 31 Jan 2005 01:39:54 +0000 (01:39 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31669 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/datetime.cpp

index 9a2476991c072d40727e976dcd95a2609a76356c..a2268b6243afb36247234fda1085a909f2ef899a 100644 (file)
@@ -1213,6 +1213,12 @@ wxDateTime& wxDateTime::Set(wxDateTime_t hour,
     tm->tm_min = minute;
     tm->tm_sec = second;
 
+    // and the DST in case it changes on this date
+    struct tm tm2(*tm);
+    mktime(&tm2);
+    if ( tm2.tm_isdst != tm->tm_isdst )
+        tm->tm_isdst = tm2.tm_isdst;
+
     (void)Set(*tm);
 
     // and finally adjust milliseconds