X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fconsole-output-undo-observer.cpp;h=98e6c69a66206b98beb0e1205b050bc47e54de92;hb=1c2557cd7259a8166f07b7982a44e040a44d4db1;hp=c90925b180dad030356d9675e727f0b80fcbe2ef;hpb=b21e43b4c63592237d199892b15cdf869cb673d4;p=inkscape.git diff --git a/src/console-output-undo-observer.cpp b/src/console-output-undo-observer.cpp index c90925b18..98e6c69a6 100644 --- a/src/console-output-undo-observer.cpp +++ b/src/console-output-undo-observer.cpp @@ -17,23 +17,35 @@ namespace Inkscape { void -ConsoleOutputUndoObserver::notifyUndoEvent(XML::Event* log) +ConsoleOutputUndoObserver::notifyUndoEvent(Event* log) { // g_message("notifyUndoEvent (sp_document_undo) called; log=%p\n", log->event); } void -ConsoleOutputUndoObserver::notifyRedoEvent(XML::Event* log) +ConsoleOutputUndoObserver::notifyRedoEvent(Event* log) { // g_message("notifyRedoEvent (sp_document_redo) called; log=%p\n", log->event); } void -ConsoleOutputUndoObserver::notifyUndoCommitEvent(XML::Event* log) +ConsoleOutputUndoObserver::notifyUndoCommitEvent(Event* log) { //g_message("notifyUndoCommitEvent (sp_document_maybe_done) called; log=%p\n", log->event); } +void +ConsoleOutputUndoObserver::notifyClearUndoEvent() +{ + //g_message("notifyClearUndoEvent (sp_document_clear_undo) called); +} + +void +ConsoleOutputUndoObserver::notifyClearRedoEvent() +{ + //g_message("notifyClearRedoEvent (sp_document_clear_redo) called); +} + } /*