init: Propagated args to CmdStop

This commit is contained in:
Paul Beckingham 2016-03-25 00:29:12 -04:00
parent 3c6a68de53
commit a38c607f61
3 changed files with 3 additions and 2 deletions

View file

@ -31,6 +31,7 @@
////////////////////////////////////////////////////////////////////////////////
int CmdStop (
const std::vector <std::string>& args,
Database& database,
Log& log)
{

View file

@ -49,7 +49,7 @@ int CmdLog (const std::vector <std::string>&,
int CmdImport ( );
int CmdReport ( );
int CmdStart (const std::vector <std::string>&, Database&, Log&);
int CmdStop ( Database&, Log&);
int CmdStop (const std::vector <std::string>&, Database&, Log&);
int CmdTags ( Database&, Log&);
int CmdTrack ( );
int CmdUndo ( );