summaryrefslogtreecommitdiff
path: root/src/surface.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/surface.cc')
-rw-r--r--src/surface.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/surface.cc b/src/surface.cc
index 9b05fe9..b5f631e 100644
--- a/src/surface.cc
+++ b/src/surface.cc
@@ -51,6 +51,7 @@ public:
return visitor.visit(state, *this);
}
virtual std::string toString() const;
+ virtual std::string name() const { return "surface"; }
QString filename;
bool center;
@@ -207,7 +208,7 @@ std::string SurfaceNode::toString() const
{
std::stringstream stream;
- stream << "surface(file = \"" << this->filename
+ stream << this->name() << "(file = \"" << this->filename
<< "\", center = " << (this->center ? "true" : "false") << ")";
return stream.str();
contact: Jan Huwald // Impressum