X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/280399077a70cf6fed5e611f41f008280e02f4c2..f74a73b36509260f612770de2caeb084f1857e08:/src/msw/datectrl.cpp diff --git a/src/msw/datectrl.cpp b/src/msw/datectrl.cpp index 68486ca9fd..d6a4315352 100644 --- a/src/msw/datectrl.cpp +++ b/src/msw/datectrl.cpp @@ -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 @@ -343,7 +347,8 @@ wxDatePickerCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result) // filter out duplicate DTN_DATETIMECHANGE events which the native // control sends us when using wxDP_DROPDOWN style - if ( !m_date.IsValid() || dt != m_date ) + if ( (m_date.IsValid() != dt.IsValid()) || + (m_date.IsValid() && dt != m_date) ) { m_date = dt; wxDateEvent event(this, dt, wxEVT_DATE_CHANGED); @@ -353,6 +358,7 @@ wxDatePickerCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result) return true; } } + //else: both the old and new values are invalid, nothing changed } }