From 4f3e1b0c24e8150cc940cadc754b4d703bbac26a Mon Sep 17 00:00:00 2001 From: Peter Penz Date: Wed, 18 Jun 2008 21:19:46 +0000 Subject: the method dropUrls(KUrl::List, KUrl) was never used as slot and is invoked only once -> moved to caller svn path=/trunk/KDE/kdebase/apps/; revision=822000 --- src/dolphinview.cpp | 16 +++++----------- src/dolphinview.h | 6 ------ 2 files changed, 5 insertions(+), 17 deletions(-) (limited to 'src') diff --git a/src/dolphinview.cpp b/src/dolphinview.cpp index 221d20376..18ffe0a27 100644 --- a/src/dolphinview.cpp +++ b/src/dolphinview.cpp @@ -800,20 +800,14 @@ void DolphinView::dropUrls(const KUrl::List& urls, destItem.url() : destPath; const KUrl sourceDir = KUrl(urls.first().directory()); if (sourceDir != destination) { - dropUrls(urls, destination); + DolphinDropController dropController(this); + // forward doingOperation signal up to the mainwindow + connect(&dropController, SIGNAL(doingOperation(KIO::FileUndoManager::CommandType)), + this, SIGNAL(doingOperation(KIO::FileUndoManager::CommandType))); + dropController.dropUrls(urls, destination); } } -void DolphinView::dropUrls(const KUrl::List& urls, - const KUrl& destination) -{ - DolphinDropController dropController(this); - // forward doingOperation signal up to the mainwindow - connect(&dropController, SIGNAL(doingOperation(KIO::FileUndoManager::CommandType)), - this, SIGNAL(doingOperation(KIO::FileUndoManager::CommandType))); - dropController.dropUrls(urls, destination); -} - void DolphinView::updateSorting(DolphinView::Sorting sorting) { ViewProperties props(viewPropertiesUrl()); diff --git a/src/dolphinview.h b/src/dolphinview.h index d9c273d38..6f4327c52 100644 --- a/src/dolphinview.h +++ b/src/dolphinview.h @@ -546,12 +546,6 @@ private slots: const KUrl& destPath, const KFileItem& destItem); - /** - * Handles the dropping of URLs to the given destination. - * @see DolphinDropController - */ - void dropUrls(const KUrl::List& urls, - const KUrl& destination); /** * Updates the view properties of the current URL to the * sorting given by \a sorting. -- cgit v1.3