]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/datectrl.cpp
fix PCH-less compilation
[wxWidgets.git] / src / msw / datectrl.cpp
index 8191af9fc37c098471381718464e12805efe57a6..d6a4315352a4fee867516a4ca68921e9630e5aa8 100644 (file)
@@ -256,7 +256,11 @@ void wxDatePickerCtrl::SetValue(const wxDateTime& dt)
         wxLogDebug(_T("DateTime_SetSystemtime() failed"));
     }
 
+    // we need to keep only the date part, times don't make sense for this
+    // control (in particular, comparisons with other dates would fail)
     m_date = dt;
+    if ( m_date.IsValid() )
+        m_date.ResetTime();
 }
 
 wxDateTime wxDatePickerCtrl::GetValue() const