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:
@@ -4276,7 +4276,7 @@ wxString wxTimeSpan::Format(const wxChar *format) const
|
|||||||
if ( IsNegative() )
|
if ( IsNegative() )
|
||||||
{
|
{
|
||||||
wxString str(Negate().Format(format));
|
wxString str(Negate().Format(format));
|
||||||
return "-" + str;
|
return _T("-") + str;
|
||||||
}
|
}
|
||||||
|
|
||||||
wxCHECK_MSG( format, wxEmptyString,
|
wxCHECK_MSG( format, wxEmptyString,
|
||||||
|
Reference in New Issue
Block a user