diff options
| author | Peter Penz <[email protected]> | 2007-10-30 19:44:55 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2007-10-30 19:44:55 +0000 |
| commit | d9f5e191a6bd32a4dc15b3a3eb34795cda7697dd (patch) | |
| tree | 0d03dac95431421dd5045a09f8c1e921098df3b6 /src/dolphincontroller.h | |
| parent | 65c11d72c949695143023641e59f2d1bb645d39d (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.h')
| -rw-r--r-- | src/dolphincontroller.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/dolphincontroller.h b/src/dolphincontroller.h index c5f0e1a2b..16b5f5587 100644 --- a/src/dolphincontroller.h +++ b/src/dolphincontroller.h @@ -128,12 +128,10 @@ public: * @param urls URLs that are dropped above a destination. * @param destPath Path of the destination. * @param destItem Destination item (can be null, see KFileItem::isNull()). - * @param source Pointer to the view implementation which invoked this method. */ void indicateDroppedUrls(const KUrl::List& urls, const KUrl& destPath, - const KFileItem& destItem, - QWidget* source); + const KFileItem& destItem); /** * Informs the abstract Dolphin view about a sorting change done inside @@ -251,13 +249,11 @@ signals: * Is emitted if the URLs \a urls have been dropped to the destination * path \a destPath. If the URLs have been dropped above an item of * the destination path, the item is indicated by \a destItem - * (can be null, see KFileItem::isNull()). \a source indicates - * the widget where the dragging has been started from. + * (can be null, see KFileItem::isNull()). */ void urlsDropped(const KUrl::List& urls, const KUrl& destPath, - const KFileItem& destItem, - QWidget* source); + const KFileItem& destItem); /** * Is emitted if the sorting has been changed to \a sorting by |
