summaryrefslogtreecommitdiffstats
path: root/src/ui/tool/path-manipulator.cpp
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2013-05-16 22:53:42 +0000
committerJabiertxo Arraiza Zenotz <jtx@jtx.marker.es>2013-05-16 22:53:42 +0000
commite17c04bd7386e2e346b7f4f760f6e6ba3c24b886 (patch)
tree73cee2b4e82e7cee5626aeceed3c8851aa4147b9 /src/ui/tool/path-manipulator.cpp
parentUpdate to trunk (diff)
downloadinkscape-e17c04bd7386e2e346b7f4f760f6e6ba3c24b886.tar.gz
inkscape-e17c04bd7386e2e346b7f4f760f6e6ba3c24b886.zip
Fix error with try-catch
(bzr r11950.1.115)
Diffstat (limited to 'src/ui/tool/path-manipulator.cpp')
-rw-r--r--src/ui/tool/path-manipulator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/tool/path-manipulator.cpp b/src/ui/tool/path-manipulator.cpp
index cad794860..7785dd685 100644
--- a/src/ui/tool/path-manipulator.cpp
+++ b/src/ui/tool/path-manipulator.cpp
@@ -110,6 +110,7 @@ void build_segment(Geom::PathBuilder &, Node *, Node *);
PathManipulator::PathManipulator(MultiPathManipulator &mpm, SPPath *path,
Geom::Affine const &et, guint32 outline_color, Glib::ustring lpe_key)
: PointManipulator(mpm._path_data.node_data.desktop, *mpm._path_data.node_data.selection)
+ , isBSpline(true)
, _subpaths(*this)
, _multi_path_manipulator(mpm)
, _path(path)
@@ -157,7 +158,6 @@ PathManipulator::PathManipulator(MultiPathManipulator &mpm, SPPath *path,
lpe_bsp = dynamic_cast<LivePathEffect::LPEBSpline*>(thisEffect->getLPEObj()->get_lpe());
}
}
- isBSpline = false;
if(lpe_bsp){
isBSpline = true;
}