// Created: 27 Sep 2003
// Id: $Id$
// Copyright: (c) 2003 wxWindows team
-// License: wxWindows license
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// ============================================================================
m_datePicker->SetValue(today);
m_day->SetValue(wxString::Format(wxT("%d"), today.GetDay()));
- m_month->SetValue(wxString::Format(wxT("%d"), today.GetMonth()));
+ m_month->SetValue(wxString::Format(wxT("%d"), today.GetMonth() + 1));
m_year->SetValue(wxString::Format(wxT("%d"), today.GetYear()));
}