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 |