summaryrefslogtreecommitdiffstats
path: root/src/libavoid
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/libavoid
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/libavoid')
-rw-r--r--src/libavoid/router.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/libavoid/router.cpp b/src/libavoid/router.cpp
index ab13a981b..35f921bb4 100644
--- a/src/libavoid/router.cpp
+++ b/src/libavoid/router.cpp
@@ -58,13 +58,17 @@ class ActionInfo {
}
ActionInfo(ActionType t, ShapeRef *s)
: type(t),
- objPtr(s)
+ objPtr(s),
+ newPoly(),
+ firstMove(0)
{
COLA_ASSERT(type != ConnChange);
}
ActionInfo(ActionType t, ConnRef *c)
: type(t),
- objPtr(c)
+ objPtr(c),
+ newPoly(),
+ firstMove(0)
{
COLA_ASSERT(type == ConnChange);
}