0000917: Task watcher doesn't update on object creation/destruction

This commit is contained in:
wmayer
2012-12-21 14:51:44 +01:00
parent 0d17470a37
commit b52f67f740
6 changed files with 48 additions and 0 deletions

View File

@@ -239,6 +239,9 @@ bool Document::undo(void)
delete mUndoTransactions.back();
mUndoTransactions.pop_back();
signalUndo(*this);
return true;
}
return false;
@@ -263,6 +266,9 @@ bool Document::redo(void)
delete mRedoTransactions.back();
mRedoTransactions.pop_back();
signalRedo(*this);
return true;
}
return false;