Lines Matching defs:log
56 * \param log The event log generated by the redo event.
58 void issueRedo(Event* log)
60 this->_observer.notifyRedoEvent(log);
67 * \param log The event log generated by the undo event.
69 void issueUndo(Event* log)
71 this->_observer.notifyUndoEvent(log);
78 * \param log The event log being committed to the undo stack.
80 void issueUndoCommit(Event* log)
82 this->_observer.notifyUndoCommitEvent(log);
136 * \param log The event log generated by the undo event.
138 void notifyUndoEvent(Event* log);
143 * \param log The event log generated by the redo event.
145 void notifyRedoEvent(Event* log);
148 * Notify all registered UndoStackObservers of an event log being committed to the undo stack.
150 * \param log The event log being committed to the undo stack.
152 void notifyUndoCommitEvent(Event* log);