From 1634501b0ed91f19999cf4f880bf2d7585469b11 Mon Sep 17 00:00:00 2001 From: Emmanuel Pescosta Date: Wed, 26 Jun 2013 22:00:09 +0200 Subject: [PATCH] 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 --- src/views/dolphinview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/dolphinview.cpp b/src/views/dolphinview.cpp index fa43656c14..d54a101d84 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);