diff -r 1de2b8d64e9f -r 98906a94732f src/linetypes/metacommand.cpp --- a/src/linetypes/metacommand.cpp Tue Jan 28 23:34:49 2020 +0200 +++ b/src/linetypes/metacommand.cpp Thu Jan 30 19:20:11 2020 +0200 @@ -1,10 +1,10 @@ #include "metacommand.h" -linetypes::MetaCommand::MetaCommand(QStringView text) : +ldraw::MetaCommand::MetaCommand(QStringView text) : Object{}, storedText{text.toString()} {} -QVariant linetypes::MetaCommand::getProperty(Property property) const +QVariant ldraw::MetaCommand::getProperty(Property property) const { switch (property) { @@ -15,7 +15,7 @@ } } -auto linetypes::MetaCommand::setProperty(Property property, const QVariant& value) +auto ldraw::MetaCommand::setProperty(Property property, const QVariant& value) -> SetPropertyResult { switch (property) @@ -28,7 +28,7 @@ } } -QString linetypes::MetaCommand::textRepresentation() const +QString ldraw::MetaCommand::textRepresentation() const { return this->storedText; }