SVN commit 473679 by staikos: proper recursion M +1 -1 kstviewobject.cpp --- trunk/extragear/graphics/kst/kst/kstviewobject.cpp #473678:473679 @@ -1609,7 +1609,7 @@ } for (KstViewObjectList::ConstIterator i = _children.begin(); i != _children.end(); ++i) { - if ((*i)->dirty()) { + if ((*i)->objectDirty()) { return true; } }