wow, that was massively broken!

svn path=/trunk/KDE/kdelibs/; revision=893519
This commit is contained in:
Aaron J. Seigo 2008-12-06 18:58:32 +00:00
parent ac9356bd85
commit 25b3937022

View File

@ -110,7 +110,8 @@ class AnimatorPrivate
QMutableMapIterator<int, CustomAnimationState*> it(customAnims);
while (it.hasNext()) {
delete it.value()->slot;
it.next();
delete[] it.value()->slot;
delete it.value();
it.remove();
}