src/linetypes/comment.cpp

Tue, 28 Sep 2021 22:14:00 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Tue, 28 Sep 2021 22:14:00 +0300
changeset 143
7b62c52835a1
parent 141
185eb297dc1e
permissions
-rw-r--r--

Fix memory corruption involving document tools.
I don't think that the metaobject-initialization had anything to do with this
but it is a lot simpler without it anyway.

#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