CVS commit by staikos: proper fix for the bug in the list partitioner M +1 -4 kstobject.h 1.24 --- kdeextragear-2/kst/kst/kstobject.h #1.23:1.24 @@ -159,8 +159,5 @@ void kstObjectSplitList(KstObjectList<Ks inclusive.append(x); } else { - T *y = dynamic_cast<T*>((*it).data()); - if (y != 0L) { - exclusive.append(y); - } + exclusive.append(*it); } }