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.
#pragma once #include "object.h" namespace ldraw { class MetaCommand; } class ldraw::MetaCommand : public Object { public: using BaseClass = Object; MetaCommand() = default; MetaCommand(QStringView text); QVariant getProperty(Property property) const override; QString textRepresentation() const override; QString storedText = ""; Type typeIdentifier() const override; QDataStream& serialize(QDataStream& stream) const override; QDataStream& deserialize(QDataStream& stream) override; QString toLDrawCode() const override; protected: void setProperty(SetPropertyResult* result, const PropertyKeyValue& pair) override; };