diff -r 3016b494685c -r cd9d6bf6f649 src/linetypes/comment.cpp --- 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 -#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(); -} -