diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-07-10 09:34:19 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-07-10 09:34:19 +0200 |
commit | 31b9a3540b83bf0cbceb70ae3acadfc1a800e54e (patch) | |
tree | 80558a7013e5e3990ed2fc141f2578ad6ed94648 | |
parent | f611310868933279a8d6899e6eabb9c5f820e929 (diff) |
SplineStart ends previous spline
-rw-r--r-- | src/lib/VSDGeometryList.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/VSDGeometryList.cpp b/src/lib/VSDGeometryList.cpp index 8d24fcb..89181b5 100644 --- a/src/lib/VSDGeometryList.cpp +++ b/src/lib/VSDGeometryList.cpp @@ -491,6 +491,7 @@ libvisio::VSDGeometryListElement *libvisio::VSDPolylineTo3::clone() void libvisio::VSDSplineStart::handle(VSDCollector *collector) const { + collector->collectSplineEnd(); collector->collectSplineStart(m_id, m_level, m_x, m_y, m_secondKnot, m_firstKnot, m_lastKnot, m_degree); } |