Removed space between minus and number in the countdown

This commit is contained in:
Federico Hernandez 2010-03-06 00:19:42 +01:00
parent f4dc5c3674
commit 485734e107

View file

@ -437,7 +437,7 @@ int runCustomReport (
time_t cntdwn = (time_t) (now - dt);
countdown = formatSeconds ( cntdwn < 0 ? cntdwn * -1 : cntdwn );
if ( cntdwn < 0 )
countdown = std::string("- ") + countdown;
countdown = std::string("-") + countdown;
context.hooks.trigger ("format-countdown", "countdown", countdown);
table.addCell (row, columnCount, countdown);
}