CmdReportMonth: Renamed internal functions from 'report' to 'chart'

This commit is contained in:
Paul Beckingham 2016-05-20 16:16:47 -05:00
parent 0a1088f383
commit 31940d8807
3 changed files with 14 additions and 14 deletions

View file

@ -230,14 +230,14 @@ int dispatchCommand (
else if (command == "clear") status = CmdClear (cli, rules, database );
else if (command == "config") status = CmdConfig (cli, rules, database );
else if (command == "continue") status = CmdContinue ( rules, database );
else if (command == "day") status = CmdReportDay (cli, rules, database );
else if (command == "day") status = CmdChartDay (cli, rules, database );
else if (command == "diagnostics") status = CmdDiagnostics ( rules, database, extensions);
else if (command == "export") status = CmdExport (cli, rules, database );
else if (command == "extensions") status = CmdExtensions ( rules, extensions);
else if (command == "gaps") status = CmdGaps (cli, rules, database );
else if (command == "help") status = CmdHelp (cli );
else if (command == "import") status = CmdImport ( );
else if (command == "month") status = CmdReportMonth (cli, rules, database );
else if (command == "month") status = CmdChartMonth (cli, rules, database );
else if (command == "report") status = CmdReport (cli, rules, database, extensions);
else if (command == "show") status = CmdShow ( rules );
else if (command == "start") status = CmdStart (cli, rules, database );
@ -246,7 +246,7 @@ int dispatchCommand (
else if (command == "tags") status = CmdTags ( rules, database );
else if (command == "track") status = CmdTrack (cli, rules, database );
else if (command == "undo") status = CmdUndo ( );
else if (command == "week") status = CmdReportWeek (cli, rules, database );
else if (command == "week") status = CmdChartWeek (cli, rules, database );
else status = CmdReport (cli, rules, database, extensions);
}
else