[Kst] branches/work/kst/hierarchy/kst/src/libkst
Eli Fidler
eli at staikos.net
Wed Dec 20 17:36:50 CET 2006
SVN commit 615205 by fidler:
save full tags for scalars and strings as well
M +1 -1 kstscalar.cpp
M +1 -1 kststring.cpp
--- branches/work/kst/hierarchy/kst/src/libkst/kstscalar.cpp #615204:615205
@@ -120,7 +120,7 @@
void KstScalar::save(QTextStream &ts, const QString& indent) {
- ts << indent << "<tag>" << QStyleSheet::escape(tagName()) << "</tag>" << endl;
+ ts << indent << "<tag>" << QStyleSheet::escape(tag().tagString()) << "</tag>" << endl;
if (_orphan) {
ts << indent << "<orphan/>" << endl;
}
--- branches/work/kst/hierarchy/kst/src/libkst/kststring.cpp #615204:615205
@@ -77,7 +77,7 @@
void KstString::save(QTextStream &ts, const QString& indent) {
- ts << indent << "<tag>" << QStyleSheet::escape(tagName()) << "</tag>" << endl;
+ ts << indent << "<tag>" << QStyleSheet::escape(tag().tagString()) << "</tag>" << endl;
if (_orphan) {
ts << indent << "<orphan/>" << endl;
}
More information about the Kst
mailing list