compilation fix for g++ < 3.4 after last commit
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43895 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -223,15 +223,13 @@ void DatePickerWidgetsPage::OnButtonReset(wxCommandEvent& WXUNUSED(event))
|
||||
|
||||
void DatePickerWidgetsPage::OnButtonSet(wxCommandEvent& WXUNUSED(event))
|
||||
{
|
||||
long day = 0, month = 0, year = 0;
|
||||
long day, month, year;
|
||||
if ( m_day->GetValue().ToLong(&day) &&
|
||||
m_month->GetValue().ToLong(&month) &&
|
||||
m_year->GetValue().ToLong(&year) )
|
||||
{
|
||||
const wxDateTime someDay(wxDateTime::wxDateTime_t(day),
|
||||
wxDateTime::Month(month),
|
||||
year);
|
||||
if(someDay.IsValid())
|
||||
const wxDateTime someDay(day, wxDateTime::Month(month), year);
|
||||
if ( someDay.IsValid() )
|
||||
{
|
||||
m_datePicker->SetValue(someDay);
|
||||
}
|
||||
|
Reference in New Issue
Block a user