CVS commit by staikos:
uninitialized variable references fixed
M +4 -3 kstscalar.cpp 1.30
--- kdeextragear-2/kst/kst/kstscalar.cpp #1.29:1.30
@@ -69,9 +69,10 @@ KstScalar::KstScalar(QDomElement& e)
}
n = n.nextSibling();
+ }
if (tagName().toDouble(&ok) == value() && ok) {
_displayable = false;
}
- }
+
KST::scalarList.append(this);
}