From: Vadim Zeitlin Date: Mon, 4 Jan 2010 12:22:34 +0000 (+0000) Subject: Compilation fix for VC6 after r63061. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/595c23b34eb8fb4b37e23fe744623176783581f1 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 --- diff --git a/tests/datetime/datetimetest.cpp b/tests/datetime/datetimetest.cpp index c5766444db..d60aae81b6 100644 --- a/tests/datetime/datetimetest.cpp +++ b/tests/datetime/datetimetest.cpp @@ -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 }, };