diff options
| author | Peter Penz <[email protected]> | 2010-11-26 18:51:04 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2010-11-26 18:51:04 +0000 |
| commit | 55a9aa18d2ddd2688eeb59d962ed60067bbd9f6c (patch) | |
| tree | 499f929a204d2419808e64be54d6ce65852f1c5f /src/views/draganddrophelper.h | |
| parent | c520572f5d15a3c3bf83956eb1a19316a6b2952b (diff) | |
DragAndDropHelper::isMimeTypeSupported() returns always true in the meantime - remove it
svn path=/trunk/KDE/kdebase/apps/; revision=1201101
Diffstat (limited to 'src/views/draganddrophelper.h')
| -rw-r--r-- | src/views/draganddrophelper.h | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/src/views/draganddrophelper.h b/src/views/draganddrophelper.h index 3cb506c43..f26f769e9 100644 --- a/src/views/draganddrophelper.h +++ b/src/views/draganddrophelper.h @@ -48,12 +48,6 @@ public: static DragAndDropHelper& instance(); /** - * Returns true, if Dolphin supports the dragging of - * the given mime data. - */ - bool isMimeDataSupported(const QMimeData* mimeData) const; - - /** * Creates a drag object for the view \a itemView for all selected items. */ void startDrag(QAbstractItemView* itemView, @@ -61,7 +55,7 @@ public: DolphinViewController* dolphinViewController = 0); /** - * Returns true if and only if the view \a itemView was the last view to + * Returns true if and only if the view \a itemView was the last view to * be passed to startDrag(...), and that drag is still in progress. */ bool isDragSource(QAbstractItemView* itemView) const; @@ -85,13 +79,13 @@ signals: private: DragAndDropHelper(); - + /** * Creates a pixmap the contains the all icons of the items * that are dragged. */ QPixmap createDragPixmap(QAbstractItemView* itemView) const; - + // The last view passed in startDrag(...), or 0 if // no startDrag(...) initiated drag is in progress. QAbstractItemView *m_dragSource; |
