Fixed regression in r57474 (this is the 2.8 branch, not trunk, treat strings like so).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@57494 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Bryan Petty
2008-12-22 06:26:40 +00:00
parent 9be232e7a9
commit aa17604d8d

View File

@@ -4276,7 +4276,7 @@ wxString wxTimeSpan::Format(const wxChar *format) const
if ( IsNegative() )
{
wxString str(Negate().Format(format));
return "-" + str;
return _T("-") + str;
}
wxCHECK_MSG( format, wxEmptyString,