diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-03 00:46:38 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-03 13:17:37 +0300 |
commit | 8b2464a723f7039a3efbc0c7d2e883729b3fa7dd (patch) | |
tree | 0564c85d8f6301d8a0b916f37612e27788d82853 /src/gui/widgets/spellshortcutcontainer.cpp | |
parent | 63054bddcc1a306787250209b03c04086b9b472f (diff) | |
download | plus-8b2464a723f7039a3efbc0c7d2e883729b3fa7dd.tar.gz plus-8b2464a723f7039a3efbc0c7d2e883729b3fa7dd.tar.bz2 plus-8b2464a723f7039a3efbc0c7d2e883729b3fa7dd.tar.xz plus-8b2464a723f7039a3efbc0c7d2e883729b3fa7dd.zip |
Fix some casts.
Diffstat (limited to 'src/gui/widgets/spellshortcutcontainer.cpp')
-rw-r--r-- | src/gui/widgets/spellshortcutcontainer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/spellshortcutcontainer.cpp b/src/gui/widgets/spellshortcutcontainer.cpp index 33579b5a9..8960725d5 100644 --- a/src/gui/widgets/spellshortcutcontainer.cpp +++ b/src/gui/widgets/spellshortcutcontainer.cpp @@ -164,7 +164,7 @@ void SpellShortcutContainer::mousePressed(MouseEvent &event) if (index == -1) return; - const unsigned int eventButton = event.getButton(); + const MouseButton::Type eventButton = event.getButton(); if (eventButton == MouseButton::LEFT) { const int itemId = getItemByIndex(index); @@ -200,7 +200,7 @@ void SpellShortcutContainer::mouseReleased(MouseEvent &event) } const int itemId = getItemByIndex(index); - const unsigned int eventButton = event.getButton(); + const MouseButton::Type eventButton = event.getButton(); if (eventButton == MouseButton::LEFT) { |