diff options
| author | Peter Penz <[email protected]> | 2008-09-28 18:38:00 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2008-09-28 18:38:00 +0000 |
| commit | 0382f24544d71eae01a85b98ab24b82daf482ecc (patch) | |
| tree | 62a375abc208639093ed51c9ccfd26ab30b7d658 /src/treeviewsidebarpage.h | |
| parent | f8a973dc4ad0a1388058a9acbb20a81bc58149cb (diff) | |
Use KonqOperations::doDrop() instead of a custom dropping code. Still some minor issues are open (Dolphin currently gets no feedback anymore when the operations have been finished), but they will be solved during the next week.
BUG: 168154
svn path=/trunk/KDE/kdebase/apps/; revision=865708
Diffstat (limited to 'src/treeviewsidebarpage.h')
| -rw-r--r-- | src/treeviewsidebarpage.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/treeviewsidebarpage.h b/src/treeviewsidebarpage.h index 6bc0ae6c3..80db7840b 100644 --- a/src/treeviewsidebarpage.h +++ b/src/treeviewsidebarpage.h @@ -72,7 +72,7 @@ signals: * This signal is emitted whenever a drop action on this widget needs the * MainWindow's attention. */ - void urlsDropped(const KUrl::List& urls, const KUrl& destination); + void urlsDropped(const KFileItem& destItem, const KUrl& destPath, QDropEvent* event); public slots: /** @@ -95,10 +95,10 @@ private slots: void updateActiveView(const QModelIndex& index); /** - * Is emitted if the URLs \a urls have been dropped - * to the index \a index. */ - void dropUrls(const KUrl::List& urls, - const QModelIndex& index); + * Is emitted if URLs have been dropped + * to the index \a index. + */ + void dropUrls(const QModelIndex& index, QDropEvent* event); /** * Invokes expandToLeafDir() asynchronously (the expanding |
