git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32142
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
bool wxDatePickerCtrl::SendClickEvent()
{
bool wxDatePickerCtrl::SendClickEvent()
{
- int16_t month = m_dt.GetMonth();
+ int16_t month = (int16_t)m_dt.GetMonth() + 1;
int16_t day = m_dt.GetDay();
int16_t year = m_dt.GetYear();
if(!SelectDay(selectDayByDay,&month,&day,&year,_T("Pick date")))
return false;
wxDateTime dt(m_dt);
int16_t day = m_dt.GetDay();
int16_t year = m_dt.GetYear();
if(!SelectDay(selectDayByDay,&month,&day,&year,_T("Pick date")))
return false;
wxDateTime dt(m_dt);
- dt.Set((wxDateTime::wxDateTime_t)day, (wxDateTime::Month)month, (int)year);
+ dt.Set((wxDateTime::wxDateTime_t)day,
+ (wxDateTime::Month)(month-1),
+ (int)year);
SetValue(dt);
return true;
}
SetValue(dt);
return true;
}
rb->Create(
this,
wxID_ANY,
rb->Create(
this,
wxID_ANY,
pos,
size,
( n == 0 ? wxRB_GROUP : 0 ) |
pos,
size,
( n == 0 ? wxRB_GROUP : 0 ) |