summaryrefslogtreecommitdiffstats
path: root/src/ui/tool/multi-path-manipulator.cpp
diff options
context:
space:
mode:
authorJosh Andler <scislac@gmail.com>2012-01-23 21:04:53 +0000
committerJosh Andler <scislac@gmail.com>2012-01-23 21:04:53 +0000
commit0af058549f04f34689625eb5b767613f89eb0dc6 (patch)
treed2bf2e1a54226c25cb7feb2af625466ee0ba5e7d /src/ui/tool/multi-path-manipulator.cpp
parentRevert accidental commit in desktop-widget.cpp (diff)
downloadinkscape-0af058549f04f34689625eb5b767613f89eb0dc6.tar.gz
inkscape-0af058549f04f34689625eb5b767613f89eb0dc6.zip
Patch from John Smith for 623660
(bzr r10921)
Diffstat (limited to 'src/ui/tool/multi-path-manipulator.cpp')
-rw-r--r--src/ui/tool/multi-path-manipulator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/tool/multi-path-manipulator.cpp b/src/ui/tool/multi-path-manipulator.cpp
index 6a671feb6..92d4d002c 100644
--- a/src/ui/tool/multi-path-manipulator.cpp
+++ b/src/ui/tool/multi-path-manipulator.cpp
@@ -546,7 +546,7 @@ void MultiPathManipulator::updateOutlineColors()
//}
}
-bool MultiPathManipulator::event(GdkEvent *event)
+bool MultiPathManipulator::event(SPEventContext *event_context, GdkEvent *event)
{
_tracker.event(event);
guint key = 0;
@@ -726,7 +726,7 @@ bool MultiPathManipulator::event(GdkEvent *event)
case GDK_MOTION_NOTIFY:
combine_motion_events(_desktop->canvas, event->motion, 0);
for (MapType::iterator i = _mmap.begin(); i != _mmap.end(); ++i) {
- if (i->second->event(event)) return true;
+ if (i->second->event(event_context, event)) return true;
}
break;
default: break;