X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0c8433d097488397700bdbbf1858e970c1f621e4..850df2d78866c3edcf848103b5dbc7e7fa1ee5fa:/src/msw/datectrl.cpp?ds=inline diff --git a/src/msw/datectrl.cpp b/src/msw/datectrl.cpp index 8191af9fc3..58a3b435c2 100644 --- a/src/msw/datectrl.cpp +++ b/src/msw/datectrl.cpp @@ -256,9 +256,15 @@ 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(); } +#include + wxDateTime wxDatePickerCtrl::GetValue() const { #ifdef __WXDEBUG__