summaryrefslogtreecommitdiffstats
path: root/src/console-output-undo-observer.cpp
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2006-06-29 20:15:48 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2006-06-29 20:15:48 +0000
commitef0a7b603c667abc8599c3abf88c4408acb05228 (patch)
tree7ddfd39557009044f41538d865cf3365e0ffe3fd /src/console-output-undo-observer.cpp
parentSmall bugfixes. (diff)
downloadinkscape-ef0a7b603c667abc8599c3abf88c4408acb05228.tar.gz
inkscape-ef0a7b603c667abc8599c3abf88c4408acb05228.zip
patch from Gustav Broberg: undo annotations and history dialog
(bzr r1315)
Diffstat (limited to 'src/console-output-undo-observer.cpp')
-rw-r--r--src/console-output-undo-observer.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/console-output-undo-observer.cpp b/src/console-output-undo-observer.cpp
index 6aa49b727..7035e89fe 100644
--- a/src/console-output-undo-observer.cpp
+++ b/src/console-output-undo-observer.cpp
@@ -17,21 +17,21 @@
namespace Inkscape {
void
-ConsoleOutputUndoObserver::notifyUndoEvent(XML::Event* log)
+ConsoleOutputUndoObserver::notifyUndoEvent(Event* log)
{
- g_message("notifyUndoEvent (sp_document_undo) called; log=%p\n", 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);
+ // 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);
+ //g_message("notifyUndoCommitEvent (sp_document_maybe_done) called; log=%p\n", log->event);
}
}