From: Emmanuel Pescosta Date: Wed, 26 Jun 2013 20:00:09 +0000 (+0200) Subject: Fix the "dropped files are not selected" regression that has X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/1634501b0ed91f19999cf4f880bf2d7585469b11 Fix the "dropped files are not selected" regression that has recently been brought up and that have been caused by review 107351 / commit fd65a97b0787b23246c9392fdc34173fb604c9ca CCBUG: 233335 FIXED-IN: 4.11.0 REVIEW: 111254 --- diff --git a/src/views/dolphinview.cpp b/src/views/dolphinview.cpp index fa43656c1..d54a101d8 100644 --- a/src/views/dolphinview.cpp +++ b/src/views/dolphinview.cpp @@ -1054,7 +1054,7 @@ void DolphinView::slotItemDropEvent(int index, QGraphicsSceneDragDropEvent* even if (op && destUrl == url()) { // Mark the dropped urls as selected. m_clearSelectionBeforeSelectingNewItems = true; - connect(op, SIGNAL(urlPasted(KUrl)), this, SLOT(slotUrlPasted(KUrl))); + connect(op, SIGNAL(aboutToCreate(KUrl::List)), this, SLOT(slotAboutToCreate(KUrl::List))); } setActive(true);