// %l milliseconds (000 - 999)
wxString wxTimeSpan::Format(const wxString& format) const
{
+ // we deal with only positive time spans here and just add the sign in
+ // front for the negative ones
+ if ( IsNegative() )
+ {
+ wxString str(Negate().Format(format));
+ return "-" + str;
+ }
+
wxCHECK_MSG( !format.empty(), wxEmptyString,
_T("NULL format in wxTimeSpan::Format") );
n = GetHours();
if ( partBiggest < Part_Hour )
{
- if ( n < 0 )
- {
- // the sign has already been taken into account
- // when outputting the biggest part
- n = -n;
- }
-
n %= HOURS_PER_DAY;
}
else
n = GetMilliseconds().ToLong();
if ( partBiggest < Part_MSec )
{
- if ( n < 0 )
- n = -n;
-
n %= 1000;
}
//else: no need to reset partBiggest to Part_MSec, it is
n = GetMinutes();
if ( partBiggest < Part_Min )
{
- if ( n < 0 )
- n = -n;
-
n %= MIN_PER_HOUR;
}
else
n = GetSeconds().ToLong();
if ( partBiggest < Part_Sec )
{
- if ( n < 0 )
- n = -n;
-
n %= SEC_PER_MIN;
}
else
if ( digits )
{
- // negative numbers need one extra position for '-' display
- if ( n < 0 )
- digits++;
-
fmtPrefix << _T("0") << digits;
}
{ 219, 0, 0, 0, "%H", "219" },
{ 219, 0, 0, 0, "%D, %H", "9, 03" },
{ 219, 0, 0, 0, "%E, %D, %H", "1, 2, 03" },
+ { 0, -1, 0, 0, "%H:%M:%S", "-00:01:00" },
+ { 0, 0, -1, 0, "%H:%M:%S", "-00:00:01" },
};
for ( size_t n = 0; n < WXSIZEOF(testSpans); n++ )
{
const TimeSpanFormatTestData& td = testSpans[n];
wxTimeSpan ts(td.h, td.min, td.sec, td.msec);
- CPPUNIT_ASSERT_EQUAL( wxString(td.result), ts.Format(td.fmt) );
+ CPPUNIT_ASSERT_EQUAL( td.result, ts.Format(td.fmt) );
}
}