Summary: | autocompletion of X and Y vectors does not occur when using file pointing to datafile. | ||
---|---|---|---|
Product: | [Applications] kst | Reporter: | Matthew Truch <matt> |
Component: | general | Assignee: | kst |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | 1.x | ||
Target Milestone: | --- | ||
Platform: | RedHat Enterprise Linux | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Matthew Truch
2004-01-14 22:29:34 UTC
Subject: kdeextragear-2/kst/kst/datasources/indirect CVS commit by staikos: Indirect files need to pass the field list through. CCMAIL: 72662-done@bugs.kde.org M +2 -0 indirect.cpp 1.2 --- kdeextragear-2/kst/kst/datasources/indirect/indirect.cpp #1.1:1.2 @@ -24,4 +24,5 @@ IndirectSource::IndirectSource(const QSt : KstDataSource(filename, QString::null), _child(child) { _valid = true; + _fieldList = child->fieldList(); } @@ -41,4 +42,5 @@ KstObject::UpdateType IndirectSource::up if (p) { _child = p; + _fieldList = p->fieldList(); } else { _valid = false; |