From: Peter Penz Date: Tue, 4 Aug 2009 05:41:44 +0000 (+0000) Subject: SVN_SILENT: use 'errorString' instead of requesting the string again X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/658976732dad0f4327a57e1a6dc3ae289394cc49 SVN_SILENT: use 'errorString' instead of requesting the string again svn path=/trunk/KDE/kdebase/apps/; revision=1006624 --- diff --git a/src/dolphindirlister.cpp b/src/dolphindirlister.cpp index 43196bb21..55be9cd2e 100644 --- a/src/dolphindirlister.cpp +++ b/src/dolphindirlister.cpp @@ -39,7 +39,7 @@ void DolphinDirLister::handleError(KIO::Job* job) if (errorString.isEmpty()) { emit errorMessage(i18nc("@info:status", "Unknown error.")); } else { - emit errorMessage(job->errorString()); + emit errorMessage(errorString); } } }