diff options
| author | Rafael Fernández López <[email protected]> | 2007-12-17 20:06:46 +0000 |
|---|---|---|
| committer | Rafael Fernández López <[email protected]> | 2007-12-17 20:06:46 +0000 |
| commit | 784c525225437a7d9cc130bb84e492d1b21be1ea (patch) | |
| tree | 62276515feb67e8c7b907db96dba077bf87c2a61 /src/draganddrophelper.cpp | |
| parent | f00ea7fd7390e4bde85ac803474dde41d1de517a (diff) | |
There we go. Fix this bug :)
BUG: 153420
svn path=/trunk/KDE/kdebase/apps/; revision=749755
Diffstat (limited to 'src/draganddrophelper.cpp')
| -rw-r--r-- | src/draganddrophelper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/draganddrophelper.cpp b/src/draganddrophelper.cpp index 0148f731b..9aa09ee30 100644 --- a/src/draganddrophelper.cpp +++ b/src/draganddrophelper.cpp @@ -54,7 +54,7 @@ void DragAndDropHelper::startDrag(QAbstractItemView* itemView, Qt::DropActions s } drag->setPixmap(pixmap); drag->setMimeData(data); - drag->exec(supportedActions); + drag->exec(supportedActions, Qt::MoveAction); } } |
