diff options
| author | David Faure <[email protected]> | 2008-10-14 00:24:54 +0000 |
|---|---|---|
| committer | David Faure <[email protected]> | 2008-10-14 00:24:54 +0000 |
| commit | 256f361e40e1af4a2da95930669cae4af48e78fb (patch) | |
| tree | ae5644c95b2f9b1d9a305b92fea9ad3d6eaf8114 | |
| parent | 76fa5aec6b7af0740876db86c2eb0ef7f6270486 (diff) | |
Don't show an empty error dlg box when aborting deletion.
svn path=/trunk/KDE/kdebase/apps/; revision=871137
| -rw-r--r-- | src/dolphinview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphinview.cpp b/src/dolphinview.cpp index daadf7730..2c4efca60 100644 --- a/src/dolphinview.cpp +++ b/src/dolphinview.cpp @@ -1022,7 +1022,7 @@ void DolphinView::slotDeleteFileFinished(KJob* job) { if (job->error() == 0) { emit operationCompletedMessage(i18nc("@info:status", "Delete operation completed.")); - } else { + } else if (job->error() != KIO::ERR_USER_CANCELED) { emit errorMessage(job->errorString()); } } |
