diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-17 21:04:31 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-17 21:04:31 +0300 |
commit | dc6de526dbdf0145fa3ac0a65d485f40b1722199 (patch) | |
tree | 78d8dab1688da99ad143f72cc766bcb1dfa86bee /src/dragdrop.h | |
parent | c6978f44df12c939ceca551fd071993402a7e4ee (diff) | |
download | ManaVerse-dc6de526dbdf0145fa3ac0a65d485f40b1722199.tar.gz ManaVerse-dc6de526dbdf0145fa3ac0a65d485f40b1722199.tar.bz2 ManaVerse-dc6de526dbdf0145fa3ac0a65d485f40b1722199.tar.xz ManaVerse-dc6de526dbdf0145fa3ac0a65d485f40b1722199.zip |
Remove default parameters from dragdrop.g
Diffstat (limited to 'src/dragdrop.h')
-rw-r--r-- | src/dragdrop.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dragdrop.h b/src/dragdrop.h index 76d0c35ce..e20137570 100644 --- a/src/dragdrop.h +++ b/src/dragdrop.h @@ -85,7 +85,7 @@ class DragDrop final void dragItem(const Item *const item, const DragDropSourceT source, - const int tag = 0) + const int tag) { if (mItemImage != nullptr) mItemImage->decRef(); @@ -115,7 +115,7 @@ class DragDrop final void dragCommand(const TextCommand *const command, const DragDropSourceT source, - const int tag = 0) + const int tag) { if (mItemImage != nullptr) mItemImage->decRef(); @@ -150,7 +150,7 @@ class DragDrop final void dragSkill(const SkillInfo *const info, const DragDropSourceT source, - const int tag = 0) + const int tag) { if (mItemImage != nullptr) mItemImage->decRef(); |