From: Thiago Macieira Date: Thu, 26 Jul 2007 21:32:27 +0000 (+0000) Subject: Call the front-end function, not the backend virtual doKill X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/cd00965aa2eb619ec5e7af34d767fb33b86673a8?ds=sidebyside Call the front-end function, not the backend virtual doKill svn path=/trunk/KDE/kdebase/apps/; revision=693038 --- diff --git a/src/viewpropsprogressinfo.cpp b/src/viewpropsprogressinfo.cpp index 5c848bb00..c841a1331 100644 --- a/src/viewpropsprogressinfo.cpp +++ b/src/viewpropsprogressinfo.cpp @@ -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(); } }