Tue, 02 Nov 2021 15:43:57 +0200
reworking
#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(); }