- Localized TDB2.
- Removed old debugging comments.
- Formatting fix in CmdBurndown.
This commit is contained in:
Paul Beckingham 2011-10-02 17:00:40 -04:00
parent 48796c5364
commit 4470a5f156
3 changed files with 86 additions and 107 deletions

View file

@ -959,9 +959,7 @@ int CmdBurndownMonthly::execute (std::string& output)
// Use any filter as a title.
if (context.a3.size () > 2)
{
std::string combined = "("
+ context.a3.extract_filter ().combine ()
+ ")";
std::string combined = "(" + context.a3.extract_filter ().combine () + ")";
chart.description (combined);
}
@ -997,9 +995,7 @@ int CmdBurndownWeekly::execute (std::string& output)
// Use any filter as a title.
if (context.a3.size () > 2)
{
std::string combined = "("
+ context.a3.extract_filter ().combine ()
+ ")";
std::string combined = "(" + context.a3.extract_filter ().combine () + ")";
chart.description (combined);
}
@ -1035,9 +1031,7 @@ int CmdBurndownDaily::execute (std::string& output)
// Use any filter as a title.
if (context.a3.size () > 2)
{
std::string combined = "("
+ context.a3.extract_filter ().combine ()
+ ")";
std::string combined = "(" + context.a3.extract_filter ().combine () + ")";
chart.description (combined);
}