src/linetypes/metacommand.cpp

changeset 35
98906a94732f
parent 14
20d2ed3af73d
child 86
4bec0525ef1b
--- 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;
 }

mercurial