Updated operator= for class VSplinePath.

--HG--
branch : feature
This commit is contained in:
dismine 2014-01-09 12:28:27 +02:00
parent f948a80c8a
commit bcf81b427e

View file

@ -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;
}