Use correct array size for weekday names.
DAYS_PER_400_YEARS was erroneously used instead of DAYS_PER_WEEK which resulted in creation of much larger object file than needed as the array is initialized. Closes #11143. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61765 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
7d58a1bdd0
commit
ff971416bb
@ -875,7 +875,7 @@ wxString wxDateTime::GetEnglishWeekDayName(WeekDay wday, NameFlags flags)
|
||||
{
|
||||
wxCHECK_MSG( wday != Inv_WeekDay, wxEmptyString, wxT("invalid weekday") );
|
||||
|
||||
static const char *weekdayNames[2][DAYS_PER_400_YEARS] =
|
||||
static const char *weekdayNames[2][DAYS_PER_WEEK] =
|
||||
{
|
||||
{ "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday",
|
||||
"Saturday" },
|
||||
|
Loading…
Reference in New Issue
Block a user