From bcf81b427e3f2d59a78bba3eafd7bd4994a9fb17 Mon Sep 17 00:00:00 2001 From: dismine Date: Thu, 9 Jan 2014 12:28:27 +0200 Subject: [PATCH] Updated operator= for class VSplinePath. --HG-- branch : feature --- src/geometry/vsplinepath.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/geometry/vsplinepath.cpp b/src/geometry/vsplinepath.cpp index 5b841b34e..a3a350a28 100644 --- a/src/geometry/vsplinepath.cpp +++ b/src/geometry/vsplinepath.cpp @@ -159,6 +159,7 @@ VSplinePath &VSplinePath::operator =(const VSplinePath &path) VGObject::operator=(path); this->path = path.GetSplinePath(); this->kCurve = path.getKCurve(); + this->maxCountPoints = path.getMaxCountPoints(); return *this; }