https://bugs.winehq.org/show_bug.cgi?id=19756 Damjan Jovanovic <damjan.jov(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Component|-unknown |comctl32 --- Comment #5 from Damjan Jovanovic <damjan.jov(a)gmail.com> --- ---snip--- wxDateTime wxDatePickerCtrl::GetValue() const { #ifdef __WXDEBUG__ wxDateTime dt; SYSTEMTIME st; if ( DateTime_GetSystemtime(GetHwnd(), &st) == GDT_VALID ) { wxFromSystemTime(&dt, st); } wxASSERT_MSG( m_date.IsValid() == dt.IsValid() && (!dt.IsValid() || dt == m_date), _T("bug in wxDatePickerCtrl: m_date not in sync") ); #endif // __WXDEBUG__ return m_date; } ---snip--- It uses the common controls datetime picker control. Setting component. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.