Summary: | either Saving or loading plots does not work. | ||
---|---|---|---|
Product: | [Applications] kst | Reporter: | Netterfield <netterfield> |
Component: | general | Assignee: | kst |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | HI | ||
Version: | 1.x | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Netterfield
2005-12-12 01:55:22 UTC
SVN commit 487981 by arwalker: BUG:118149 Plot identifier was changed in kst2dplot.cpp but not here. M +2 -1 kstviewobject.cpp --- trunk/extragear/graphics/kst/kst/kstviewobject.cpp #487980:487981 @@ -163,7 +163,8 @@ while (!n.isNull()) { QDomElement el = n.toElement(); if (!el.isNull()) { - if (el.tagName() == "plot") { + if (el.tagName() == "Plot" || + el.tagName() == "plot") { // get the <tag> value properly QString in_tag; QDomNode plotNode = el.firstChild(); |