Code

Fix Bug #447385 - Drag'n'drop from swatches doesn't always work
[inkscape.git] / src / console-output-undo-observer.cpp
index 7035e89feb1fb7450b2cabc7915ecaa2eb9d30fd..18782c1638279172303d9511b43a4f97674a16e9 100644 (file)
 namespace Inkscape {
 
 void
-ConsoleOutputUndoObserver::notifyUndoEvent(Event* log)
+ConsoleOutputUndoObserver::notifyUndoEvent(Event* /*log*/)
 {
     // g_message("notifyUndoEvent (sp_document_undo) called; log=%p\n", log->event);
 }
 
 void
-ConsoleOutputUndoObserver::notifyRedoEvent(Event* log)
+ConsoleOutputUndoObserver::notifyRedoEvent(Event* /*log*/)
 {
     // g_message("notifyRedoEvent (sp_document_redo) called; log=%p\n", log->event);
 }
 
 void
-ConsoleOutputUndoObserver::notifyUndoCommitEvent(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);
+}
+
 }
 
 /*
@@ -45,4 +57,4 @@ ConsoleOutputUndoObserver::notifyUndoCommitEvent(Event* log)
   fill-column:99
   End:
 */
-// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :