Compilation fix for VC6 after r63061.

VC6 doesn't support empty struct initializers apparently.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63062 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2010-01-04 12:22:34 +00:00
parent 8b7d411f14
commit 595c23b34e

View File

@@ -1101,19 +1101,19 @@ void DateTimeTestCase::TestDateTimeParse()
{
{
"Thu 22 Nov 2007 07:40:00 PM",
{ 22, wxDateTime::Nov, 2007, 19, 40, 0 },
{ 22, wxDateTime::Nov, 2007, 19, 40, 0 },
true
},
{
"2010-01-04 14:30",
{ 4, wxDateTime::Jan, 2010, 14, 30, 0 },
{ 4, wxDateTime::Jan, 2010, 14, 30, 0 },
true
},
{
"bloordyblop",
{ },
{ 1, wxDateTime::Jan, 9999, 0, 0, 0},
false
},
};