diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-06-02 15:34:55 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-06-02 15:34:55 +0300 |
commit | 9d9890e76023681a3ef98e2a743856f66a91e97f (patch) | |
tree | 68ac60e69bc3548ec9210018c39fa74408dbd1fb /src/gui/widgets/dropshortcutcontainer.cpp | |
parent | 85c9ac79bfaf5e428d9e713841b0e4495eb413f7 (diff) | |
download | plus-9d9890e76023681a3ef98e2a743856f66a91e97f.tar.gz plus-9d9890e76023681a3ef98e2a743856f66a91e97f.tar.bz2 plus-9d9890e76023681a3ef98e2a743856f66a91e97f.tar.xz plus-9d9890e76023681a3ef98e2a743856f66a91e97f.zip |
fix compilation with old compilers.
Diffstat (limited to 'src/gui/widgets/dropshortcutcontainer.cpp')
-rw-r--r-- | src/gui/widgets/dropshortcutcontainer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/dropshortcutcontainer.cpp b/src/gui/widgets/dropshortcutcontainer.cpp index 166b5eaec..2a65a57c1 100644 --- a/src/gui/widgets/dropshortcutcontainer.cpp +++ b/src/gui/widgets/dropshortcutcontainer.cpp @@ -184,7 +184,7 @@ void DropShortcutContainer::mouseDragged(gcn::MouseEvent &event) if (item) { - dragDrop.dragItem(item, DragDropSource::DRAGDROP_SOURCE_DROP); + dragDrop.dragItem(item, DRAGDROP_SOURCE_DROP); dropShortcut->removeItem(index); } else |