diff options
| author | Peter Penz <[email protected]> | 2008-10-22 06:11:59 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2008-10-22 06:11:59 +0000 |
| commit | cb928888f7e8b0450fc8c4cf0dd4f5ea3c46eb42 (patch) | |
| tree | 11f24e2eddef75394832fed82415aa6ad1b004f8 /src/draganddrophelper.h | |
| parent | 4516323b9b63893792395ff065fb09239828add9 (diff) | |
* don't show a tooltip if a rubberband selection is done
* hide a tooltip if a drag operation has been started
BUG: 173148
CCMAIL: [email protected]
svn path=/trunk/KDE/kdebase/apps/; revision=874641
Diffstat (limited to 'src/draganddrophelper.h')
| -rw-r--r-- | src/draganddrophelper.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/draganddrophelper.h b/src/draganddrophelper.h index 93f9ddd12..64e347e9c 100644 --- a/src/draganddrophelper.h +++ b/src/draganddrophelper.h @@ -22,6 +22,7 @@ #include <QtCore/Qt> +class DolphinController; class QAbstractItemView; class QBrush; class QRect; @@ -41,7 +42,9 @@ public: /** * Creates a drag object for the view \a itemView for all selected items. */ - static void startDrag(QAbstractItemView* itemView, Qt::DropActions supportedActions); + static void startDrag(QAbstractItemView* itemView, + Qt::DropActions supportedActions, + DolphinController* controller = 0); }; #endif |
