summaryrefslogtreecommitdiffstats
path: root/src/lpe-tool-context.cpp
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2013-10-12 21:25:39 +0000
committerJabiertxof <jtx@jtx.marker.es>2013-10-12 21:25:39 +0000
commiteab1eef70ec00e5048b522b6c7f4189615caac87 (patch)
tree4d8d574ad9741174e0d99077f234fd41231b08e7 /src/lpe-tool-context.cpp
parentfix bsplines (diff)
parentFix crash with experimental lpe tool. (diff)
downloadinkscape-eab1eef70ec00e5048b522b6c7f4189615caac87.tar.gz
inkscape-eab1eef70ec00e5048b522b6c7f4189615caac87.zip
Update to trunk
(bzr r11950.1.180)
Diffstat (limited to 'src/lpe-tool-context.cpp')
-rw-r--r--src/lpe-tool-context.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lpe-tool-context.cpp b/src/lpe-tool-context.cpp
index edc9a6930..0b71a892c 100644
--- a/src/lpe-tool-context.cpp
+++ b/src/lpe-tool-context.cpp
@@ -191,8 +191,7 @@ bool SPLPEToolContext::root_handler(GdkEvent* event) {
if (sp_pen_context_has_waiting_LPE(this)) {
// quit when we are waiting for a LPE to be applied
//ret = ((SPEventContextClass *) sp_lpetool_context_parent_class)->root_handler(event_context, event);
- ret = this->root_handler(event);
- return ret;
+ return SPPenContext::root_handler(event);
}
switch (event->type) {
@@ -224,7 +223,7 @@ bool SPLPEToolContext::root_handler(GdkEvent* event) {
// we pass the mouse click on to pen tool as the first click which it should collect
//ret = ((SPEventContextClass *) sp_lpetool_context_parent_class)->root_handler(event_context, event);
- ret = this->root_handler(event);
+ ret = SPPenContext::root_handler(event);
}
break;