diff options
| author | Méven Car <[email protected]> | 2024-11-25 12:48:17 +0100 |
|---|---|---|
| committer | Méven Car <[email protected]> | 2024-11-25 12:48:17 +0100 |
| commit | f83b2cdcdbfabd0e2450af3a2e9f31c9922ed871 (patch) | |
| tree | b73baf6881af1e9ca96ec5a6830661a4f977cf3f | |
| parent | df0ec3d2923846738e8b58395d1b46c4a9942d4b (diff) | |
DolphinView: fix typos in signal connection
NO_CHANGELOG
| -rw-r--r-- | src/views/dolphinview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/views/dolphinview.cpp b/src/views/dolphinview.cpp index c12e3d5f7..d9d7f2ef3 100644 --- a/src/views/dolphinview.cpp +++ b/src/views/dolphinview.cpp @@ -839,7 +839,7 @@ void DolphinView::copySelectedItems(const KFileItemList &selection, const QUrl & KIO::CopyJob *job = KIO::copy(selection.urlList(), destinationUrl, KIO::DefaultFlags); KJobWidgets::setWindow(job, this); - connect(job, &KIO::DropJob::result, this, &DolphinView::slotJobResult); + connect(job, &KIO::CopyJob::result, this, &DolphinView::slotJobResult); connect(job, &KIO::CopyJob::copying, this, &DolphinView::slotItemCreatedFromJob); connect(job, &KIO::CopyJob::copyingDone, this, &DolphinView::slotItemCreatedFromJob); KIO::FileUndoManager::self()->recordCopyJob(job); @@ -858,7 +858,7 @@ void DolphinView::moveSelectedItems(const KFileItemList &selection, const QUrl & KIO::CopyJob *job = KIO::move(selection.urlList(), destinationUrl, KIO::DefaultFlags); KJobWidgets::setWindow(job, this); - connect(job, &KIO::DropJob::result, this, &DolphinView::slotJobResult); + connect(job, &KIO::CopyJob::result, this, &DolphinView::slotJobResult); connect(job, &KIO::CopyJob::moving, this, &DolphinView::slotItemCreatedFromJob); connect(job, &KIO::CopyJob::copyingDone, this, &DolphinView::slotItemCreatedFromJob); KIO::FileUndoManager::self()->recordCopyJob(job); |
