CVS commit by staikos: needed in bindings (and probably elsewhere) M +9 -0 kstdatasource.h 1.36 --- kdeextragear-2/kst/kst/kstdatasource.h #1.35:1.36 @@ -196,4 +196,13 @@ class KstDataSourceList : public KstObje return end(); } + + QStringList fileNames() const { + QStringList rc; + for (KstDataSourceList::ConstIterator it = begin(); it != end(); ++it) { + rc << (*it)->fileName(); + } + return rc; + } + };