diff options
| author | MenTaLguY <mental@rydia.net> | 2007-05-06 21:30:41 +0000 |
|---|---|---|
| committer | mental <mental@users.sourceforge.net> | 2007-05-06 21:30:41 +0000 |
| commit | 5bf2e0606b7e448c0b841ef51ed8479feedff240 (patch) | |
| tree | 7250a4476f50a2996805c4ee547cf5a32f567a9f /src/helper/action.cpp | |
| parent | instrument undo commits (diff) | |
| download | inkscape-5bf2e0606b7e448c0b841ef51ed8479feedff240.tar.gz inkscape-5bf2e0606b7e448c0b841ef51ed8479feedff240.zip | |
allow nesting under verb events
(bzr r2980)
Diffstat (limited to 'src/helper/action.cpp')
| -rw-r--r-- | src/helper/action.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/helper/action.cpp b/src/helper/action.cpp index 908c63638..d67bc5fc2 100644 --- a/src/helper/action.cpp +++ b/src/helper/action.cpp @@ -16,6 +16,7 @@ #include "debug/logger.h" #include "debug/timestamp.h" #include "debug/simple-event.h" +#include "debug/event-tracker.h" #include "helper/action.h" static void sp_action_class_init (SPActionClass *klass); @@ -156,7 +157,7 @@ sp_action_perform (SPAction *action, void * data) nr_return_if_fail (action != NULL); nr_return_if_fail (SP_IS_ACTION (action)); - Inkscape::Debug::Logger::write<ActionEvent>(action); + Inkscape::Debug::EventTracker<ActionEvent> tracker(action); aobject = NR_ACTIVE_OBJECT(action); if (aobject->callbacks) { |
