┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/views/draganddrophelper.h
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2010-11-26 18:51:04 +0000
committerPeter Penz <[email protected]>2010-11-26 18:51:04 +0000
commit55a9aa18d2ddd2688eeb59d962ed60067bbd9f6c (patch)
tree499f929a204d2419808e64be54d6ce65852f1c5f /src/views/draganddrophelper.h
parentc520572f5d15a3c3bf83956eb1a19316a6b2952b (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.h12
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;