┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/views
diff options
context:
space:
mode:
authorMéven Car <[email protected]>2025-06-29 10:57:57 +0200
committerMéven Car <[email protected]>2025-06-29 10:59:44 +0200
commit18bcab4cf8d6052727363e4eaa0e5174710c77af (patch)
tree472f0e0d7b513c8d292ea0492e3310581b59b81e /src/views
parentfb6afa7befa07346875a1c851af82d718c8e9813 (diff)
DolphinView: use correct slot as trashjob results
When using the Delete action.
Diffstat (limited to 'src/views')
-rw-r--r--src/views/dolphinview.cpp2
1 files changed, 1 insertions, 1 deletions
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();
}