summaryrefslogtreecommitdiff
path: root/src/gui/widgets/virtshortcutcontainer.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-11-16 21:16:07 +0300
committerAndrei Karas <akaras@inbox.ru>2015-11-16 21:16:07 +0300
commit0c063cf5b45a843485fe3343e5fb79a40141f88c (patch)
treee2419701a312e0ba97404049cd5b82b7420c3fce /src/gui/widgets/virtshortcutcontainer.cpp
parentdb82bf99bbd6d246f3e8da19fe88705f7015f144 (diff)
downloadManaVerse-0c063cf5b45a843485fe3343e5fb79a40141f88c.tar.gz
ManaVerse-0c063cf5b45a843485fe3343e5fb79a40141f88c.tar.bz2
ManaVerse-0c063cf5b45a843485fe3343e5fb79a40141f88c.tar.xz
ManaVerse-0c063cf5b45a843485fe3343e5fb79a40141f88c.zip
Convert DragDropSource enum into strong typed enum.
Diffstat (limited to 'src/gui/widgets/virtshortcutcontainer.cpp')
-rw-r--r--src/gui/widgets/virtshortcutcontainer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/virtshortcutcontainer.cpp b/src/gui/widgets/virtshortcutcontainer.cpp
index 4066a915c..5a8a0432d 100644
--- a/src/gui/widgets/virtshortcutcontainer.cpp
+++ b/src/gui/widgets/virtshortcutcontainer.cpp
@@ -246,7 +246,7 @@ void VirtShortcutContainer::mouseDragged(MouseEvent &event)
if (item)
{
- dragDrop.dragItem(item, DRAGDROP_SOURCE_DROP);
+ dragDrop.dragItem(item, DragDropSource::Drop);
mShortcut->removeItem(index);
}
else