mirror of
https://github.com/GothenburgBitFactory/timewarrior.git
synced 2025-07-07 20:06:39 +02:00
CmdSummary: CmdReportSummary renamed to CmdSummary
This commit is contained in:
parent
c339c3f9ce
commit
e7e2dd7341
4 changed files with 4 additions and 4 deletions
|
@ -20,7 +20,7 @@ set (commands_SRCS CmdCancel.cpp
|
|||
CmdReportMonth.cpp
|
||||
CmdStart.cpp
|
||||
CmdStop.cpp
|
||||
CmdReportSummary.cpp
|
||||
CmdSummary.cpp
|
||||
CmdShow.cpp
|
||||
CmdTags.cpp
|
||||
CmdTrack.cpp
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
#include <iostream>
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
int CmdReportSummary (
|
||||
int CmdSummary (
|
||||
const CLI& cli,
|
||||
Rules& rules,
|
||||
Database& database)
|
|
@ -55,6 +55,6 @@ int CmdUndo ( );
|
|||
int CmdReportDay (const CLI&, Rules&, Database& );
|
||||
int CmdReportWeek (const CLI&, Rules&, Database& );
|
||||
int CmdReportMonth (const CLI&, Rules&, Database& );
|
||||
int CmdReportSummary (const CLI&, Rules&, Database& );
|
||||
int CmdSummary (const CLI&, Rules&, Database& );
|
||||
|
||||
#endif
|
||||
|
|
|
@ -242,7 +242,7 @@ int dispatchCommand (
|
|||
else if (command == "show") status = CmdShow ( rules );
|
||||
else if (command == "start") status = CmdStart (cli, rules, database );
|
||||
else if (command == "stop") status = CmdStop (cli, rules, database );
|
||||
else if (command == "summary") status = CmdReportSummary (cli, rules, database );
|
||||
else if (command == "summary") status = CmdSummary (cli, rules, database );
|
||||
else if (command == "tags") status = CmdTags ( rules, database );
|
||||
else if (command == "track") status = CmdTrack (cli, rules, database );
|
||||
else if (command == "undo") status = CmdUndo ( );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue