git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54407
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
+ bool IsTextEmpty() const
+ {
+ return m_combo->GetTextCtrl()->IsEmpty();
+ }
+
bool ParseDateTime(const wxString& s, wxDateTime* pDt)
{
wxASSERT(pDt);
bool ParseDateTime(const wxString& s, wxDateTime* pDt)
{
wxASSERT(pDt);
wxDateTime wxDatePickerCtrlGeneric::GetValue() const
{
wxDateTime wxDatePickerCtrlGeneric::GetValue() const
{
+ if ( HasFlag(wxDP_ALLOWNONE) && m_popup->IsTextEmpty() )
+ return wxInvalidDateTime;
return m_popup->GetDate();
}
return m_popup->GetDate();
}