Tue, 28 Sep 2021 22:14:00 +0300
Fix memory corruption involving document tools.
I don't think that the metaobject-initialization had anything to do with this
but it is a lot simpler without it anyway.
#include "conditionaledge.h" QString ldraw::ConditionalEdge::textRepresentation() const { return utility::format("%1 %2 %3 %4", utility::vertexToStringParens(this->points[0]), utility::vertexToStringParens(this->points[1]), utility::vertexToStringParens(this->points[2]), utility::vertexToStringParens(this->points[3])); } ldraw::Object::Type ldraw::ConditionalEdge::typeIdentifier() const { return Type::ConditionalEdge; } QString ldraw::ConditionalEdge::toLDrawCode() const { return utility::format( "5 %1 %2 %3 %4 %5", this->colorIndex.index, utility::vertexToString(this->points[0]), utility::vertexToString(this->points[1]), utility::vertexToString(this->points[2]), utility::vertexToString(this->points[3])); }