Integration - "projects" report

- "projects" report converted to 1.8.0.
- Relocated code from task.cpp to recur.cpp to allow unit tests to link
  without includign task.cpp and therefore main.
- Removed obsolete sandbox directory.
- Fixed bug where Config::load deleted the pre-loaded custom reports.
- Fixed bug where Cmd::valid failed to include custom reports properly.
This commit is contained in:
Paul Beckingham
2009-06-08 00:54:49 -04:00
parent cf67e0142c
commit fb5fe5f5b4
12 changed files with 494 additions and 516 deletions

View File

@@ -85,8 +85,6 @@ Config::Config (const std::string& file)
// not tolerated, but blank lines and comments starting with # are allowed.
bool Config::load (const std::string& file)
{
this->clear ();
std::ifstream in;
in.open (file.c_str (), std::ifstream::in);
if (in.good ())