Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/entityproperties.cc')
-rw-r--r--src/entityproperties.cc8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/entityproperties.cc b/src/entityproperties.cc
index e9ed1d0..429b759 100644
--- a/src/entityproperties.cc
+++ b/src/entityproperties.cc
@@ -62,15 +62,19 @@ void EntityProperties::save(QTextStream &textstream)
}
textstream << "[" << type() << "]" << '\n';
+ save_comment(textstream, "label");
if (label().size())
textstream << "label=" << label() << '\n';
+ save_comment(textstream, "name");
if (name().size())
textstream << "name=" << name() << '\n';
// location
+ save_comment(textstream, "location");
textstream << "location=" << location().x() << " " << location().y() << " " << location().z() << '\n';
// radius
+ save_comment(textstream, "radius");
if (radius()) {
textstream << "radius=" << radius() << '\n';
}
@@ -83,7 +87,7 @@ void EntityProperties::save(QTextStream &textstream)
// info string
if (info().size()) {
textstream << '\n';
-
+ save_comment(textstream, "info");
// QTextStream operates on QString, not on QString const
QString infobuffer = info();
QTextStream infostream(&infobuffer);
@@ -107,9 +111,9 @@ void EntityProperties::save(QTextStream &textstream)
else
textstream << '\n';
}
-
}
textstream << '\n';
}
+
} // namespace editor