From: Méven Car Date: Sun, 29 Jun 2025 08:57:57 +0000 (+0200) Subject: DolphinView: use correct slot as trashjob results X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/18bcab4cf8d6052727363e4eaa0e5174710c77af?hp=fb6afa7befa07346875a1c851af82d718c8e9813 DolphinView: use correct slot as trashjob results When using the Delete action. --- diff --git a/src/views/dolphinview.cpp b/src/views/dolphinview.cpp index 50c014c6a..9bbdc3b10 100644 --- a/src/views/dolphinview.cpp +++ b/src/views/dolphinview.cpp @@ -810,7 +810,7 @@ void DolphinView::deleteSelectedItems() using Iface = KIO::AskUserActionInterface; auto *trashJob = new KIO::DeleteOrTrashJob(list, Iface::Delete, Iface::DefaultConfirmation, this); - connect(trashJob, &KJob::result, this, &DolphinView::slotTrashFileFinished); + connect(trashJob, &KJob::result, this, &DolphinView::slotDeleteFileFinished); m_selectNextItem = true; trashJob->start(); }