- Added an option to bypass backlog recording to TDB2::add and TDB2::modify.
  This is required when handling backlog data, to prevent perpetual syncing.
This commit is contained in:
Paul Beckingham
2012-10-08 17:45:43 -04:00
parent 98d9a367f3
commit 4a6b9e6104
2 changed files with 8 additions and 6 deletions

View File

@@ -101,8 +101,8 @@ public:
~TDB2 ();
void set_location (const std::string&);
void add (Task&);
void modify (Task&);
void add (Task&, bool add_to_backlog = true);
void modify (Task&, bool add_to_backlog = true);
void commit ();
void merge (const std::string&);
void revert ();