diff -r 40e2940605a3 -r 4bec0525ef1b src/linetypes/metacommand.h --- a/src/linetypes/metacommand.h Wed Mar 18 17:11:23 2020 +0200 +++ b/src/linetypes/metacommand.h Thu Mar 19 21:06:06 2020 +0200 @@ -8,12 +8,12 @@ class ldraw::MetaCommand : public Object { public: + using BaseClass = Object; MetaCommand() = default; MetaCommand(QStringView text); QVariant getProperty(Property property) const override; - SetPropertyResult setProperty( - Property property, - const QVariant& value) override; QString textRepresentation() const override; QString storedText = ""; +protected: + void setProperty(SetPropertyResult* result, const PropertyKeyValue& pair) override; };