src/linetypes/comment.cpp

changeset 176
cd9d6bf6f649
parent 174
3016b494685c
child 177
f69d53c053df
--- a/src/linetypes/comment.cpp	Wed Mar 09 13:14:40 2022 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,20 +0,0 @@
-#include <QFont>
-#include "comment.h"
-
-QFont ldraw::Comment::textRepresentationFont() const
-{
-	QFont font;
-	font.setItalic(true);
-	return font;
-}
-
-ldraw::Object::Type ldraw::Comment::typeIdentifier() const
-{
-	return Type::Comment;
-}
-
-QString ldraw::Comment::toLDrawCode() const
-{
-	return ("0 // " + this->storedText).trimmed();
-}
-

mercurial