┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinview.h
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2007-09-17 14:36:41 +0000
committerPeter Penz <[email protected]>2007-09-17 14:36:41 +0000
commitd78fe954abb9ea0ed05f8c22d6842a457c0a209e (patch)
tree6529cc7867105862a8a564bb74a8042091695983 /src/dolphinview.h
parentb3db0a708a630d9f59857ab7dcbfe8f29e3e8eb9 (diff)
drag and drop fixes for the column view (implied a signal changed which affected other views too)
svn path=/trunk/KDE/kdebase/apps/; revision=713430
Diffstat (limited to 'src/dolphinview.h')
-rw-r--r--src/dolphinview.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/dolphinview.h b/src/dolphinview.h
index 159613cd9..6799215e0 100644
--- a/src/dolphinview.h
+++ b/src/dolphinview.h
@@ -429,11 +429,14 @@ private slots:
void openContextMenu(const QPoint& pos);
/**
- * Drops the URLs \a urls to the index \a index. \a source
+ * Drops the URLs \a urls to the destination path \a destPath. If
+ * the URLs are dropped above an item inside the destination path,
+ * the item is indicated by \a destIndex. \a source
* indicates the widget where the dragging has been started from.
*/
void dropUrls(const KUrl::List& urls,
- const QModelIndex& index,
+ const KUrl& destPath,
+ const QModelIndex& destIndex,
QWidget* source);
/**