┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphincontroller.cpp
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2007-10-30 19:44:55 +0000
committerPeter Penz <[email protected]>2007-10-30 19:44:55 +0000
commitd9f5e191a6bd32a4dc15b3a3eb34795cda7697dd (patch)
tree0d03dac95431421dd5045a09f8c1e921098df3b6 /src/dolphincontroller.cpp
parent65c11d72c949695143023641e59f2d1bb645d39d (diff)
* fixed drag & drop issue in column view (dropping on files was not possible -> handled as viewport now)
* only show the hover-drop-indicator on directories (dropping on file-items is handled like dropping on the viewport) * simplified signature of drop signal (source widget not required anymore) svn path=/trunk/KDE/kdebase/apps/; revision=731129
Diffstat (limited to 'src/dolphincontroller.cpp')
-rw-r--r--src/dolphincontroller.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/dolphincontroller.cpp b/src/dolphincontroller.cpp
index 897d4266b..58f6f681f 100644
--- a/src/dolphincontroller.cpp
+++ b/src/dolphincontroller.cpp
@@ -62,10 +62,9 @@ void DolphinController::requestActivation()
void DolphinController::indicateDroppedUrls(const KUrl::List& urls,
const KUrl& destPath,
- const KFileItem& destItem,
- QWidget* source)
+ const KFileItem& destItem)
{
- emit urlsDropped(urls, destPath, destItem, source);
+ emit urlsDropped(urls, destPath, destItem);
}