- Fixed bug that caused redundant information to be displayed when the
  "done" command was run.  Thanks to John Florian.
This commit is contained in:
Paul Beckingham
2009-07-08 23:17:33 -04:00
parent 84f48fd056
commit 9095934bc0
3 changed files with 17 additions and 14 deletions

View File

@@ -28,6 +28,7 @@
#define INCLUDED_PERMISSION
#include <string>
#include "Task.h"
class Permission
{
@@ -38,7 +39,7 @@ public:
void bigChange () { needConfirmation = true; }
void bigSequence () { needConfirmation = true; }
bool confirmed (const std::string&);
bool confirmed (const Task&, const std::string&);
private:
bool needConfirmation;