X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0c8433d097488397700bdbbf1858e970c1f621e4..c3a58b249e576b73b01cd74deb1cf879aa6e1975:/src/msw/datectrl.cpp?ds=sidebyside diff --git a/src/msw/datectrl.cpp b/src/msw/datectrl.cpp index 8191af9fc3..438f347694 100644 --- a/src/msw/datectrl.cpp +++ b/src/msw/datectrl.cpp @@ -256,7 +256,10 @@ 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; + m_date.ResetTime(); } wxDateTime wxDatePickerCtrl::GetValue() const