compilation fix: remove extraneous variable declaration after last commit (why didn't g++ complain about it?)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59806 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2009-03-24 09:15:44 +00:00
parent aa6208d975
commit 19f5f4abbe

View File

@ -1525,8 +1525,6 @@ wxDateTime::ParseFormat(const wxString& date,
// try to parse what follows as "%H:%M:%S" and, if this
// fails, as "%I:%M:%S %p" - this should catch the most
// common cases
wxDateTime dt;
const wxDateTime
dt = ParseFormatAt(input, date.end(), "%T", "%r");
if ( !dt.IsValid() )