Code Cleanup

- Broke out the guts of handleCustomReport into runCustomReport, so
  that the next report can generate it's own task list, then allow the
  custom report handling to render it.  This means the next report is
  essentially (but not quite) a custom report.
This commit is contained in:
Paul Beckingham 2009-06-24 21:56:31 -04:00
parent 5632c49945
commit f31f068322
2 changed files with 68 additions and 22 deletions

View file

@ -101,6 +101,9 @@ std::string getDueDate (Task&);
// custom.cpp
std::string handleCustomReport (const std::string&);
std::string runCustomReport (const std::string&, const std::string&,
const std::string&, const std::string&,
const std::string&, std::vector <Task>&);
// rules.cpp
void initializeColorRules ();