]> cloud.milkyroute.net Git - dolphin.git/commitdiff
Call the front-end function, not the backend virtual doKill
authorThiago Macieira <thiago@kde.org>
Thu, 26 Jul 2007 21:32:27 +0000 (21:32 +0000)
committerThiago Macieira <thiago@kde.org>
Thu, 26 Jul 2007 21:32:27 +0000 (21:32 +0000)
svn path=/trunk/KDE/kdebase/apps/; revision=693038

src/viewpropsprogressinfo.cpp

index 5c848bb00fd4be7d29ec2e29f9d96f76f96960b5..c841a13311ae51944ec53c8be7e43ef1d1660888 100644 (file)
@@ -135,11 +135,11 @@ void ViewPropsProgressInfo::applyViewProperties()
 void ViewPropsProgressInfo::cancelApplying()
 {
     if (m_dirSizeJob != 0) {
-        m_dirSizeJob->doKill();
+        m_dirSizeJob->kill();
     }
 
     if (m_applyViewPropsJob != 0) {
-        m_applyViewPropsJob->doKill();
+        m_applyViewPropsJob->kill();
     }
 }