┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/draganddrophelper.cpp
diff options
context:
space:
mode:
authorRafael Fernández López <[email protected]>2007-12-17 20:06:46 +0000
committerRafael Fernández López <[email protected]>2007-12-17 20:06:46 +0000
commit784c525225437a7d9cc130bb84e492d1b21be1ea (patch)
tree62276515feb67e8c7b907db96dba077bf87c2a61 /src/draganddrophelper.cpp
parentf00ea7fd7390e4bde85ac803474dde41d1de517a (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.cpp2
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);
}
}