CVS commit by staikos: here too M +9 -1 kstobject.h 1.39 --- kdeextragear-2/kst/kst/kstobject.h #1.38:1.39 @@ -200,5 +200,13 @@ class KstObjectMap : public QMap::Iterator it = QMap::begin(); it != QMap::end(); ++it) { + for (typename QMap::ConstIterator it = QMap::begin(); it != QMap::end(); ++it) { + rc << it.data()->tagName(); + } + return rc; + } + + QStringList tagNames() const { + QStringList rc; + for (typename QMap::ConstIterator it = QMap::begin(); it != QMap::end(); ++it) { rc << it.data()->tagName(); }