From 485734e1073f80423e394446b92c9e6e3f644f7c Mon Sep 17 00:00:00 2001 From: Federico Hernandez Date: Sat, 6 Mar 2010 00:19:42 +0100 Subject: [PATCH] Removed space between minus and number in the countdown --- src/custom.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/custom.cpp b/src/custom.cpp index 0156e7e0b..792217f74 100644 --- a/src/custom.cpp +++ b/src/custom.cpp @@ -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); }