┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2009-08-04 05:41:44 +0000
committerPeter Penz <[email protected]>2009-08-04 05:41:44 +0000
commit658976732dad0f4327a57e1a6dc3ae289394cc49 (patch)
tree17dae24c14569a57275b03ad45d3b5abb80b00bb /src
parent79a6e75b6567e8cf2ef677cea6bb2c34075d07c7 (diff)
SVN_SILENT: use 'errorString' instead of requesting the string again
svn path=/trunk/KDE/kdebase/apps/; revision=1006624
Diffstat (limited to 'src')
-rw-r--r--src/dolphindirlister.cpp2
1 files changed, 1 insertions, 1 deletions
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);
}
}
}