src/linetypes/comment.cpp

changeset 141
185eb297dc1e
parent 134
f77d2230e87c
equal deleted inserted replaced
140:2f383e88acf4 141:185eb297dc1e
11 ldraw::Object::Type ldraw::Comment::typeIdentifier() const 11 ldraw::Object::Type ldraw::Comment::typeIdentifier() const
12 { 12 {
13 return Type::Comment; 13 return Type::Comment;
14 } 14 }
15 15
16 QString ldraw::Comment::toLDrawCode() const
17 {
18 return ("0 // " + this->storedText).trimmed();
19 }
20

mercurial