diff options
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 7971e0d33..796964801 100644 --- a/src/gui/widgets/spellshortcutcontainer.cpp +++ b/src/gui/widgets/spellshortcutcontainer.cpp @@ -219,7 +219,7 @@ void SpellShortcutContainer::mousePressed(MouseEvent &event) if (index == -1) return; - const MouseButton::Type eventButton = event.getButton(); + const MouseButtonT eventButton = event.getButton(); if (eventButton == MouseButton::LEFT) { const int itemId = getItemByIndex(index); @@ -255,7 +255,7 @@ void SpellShortcutContainer::mouseReleased(MouseEvent &event) } const int itemId = getItemByIndex(index); - const MouseButton::Type eventButton = event.getButton(); + const MouseButtonT eventButton = event.getButton(); if (eventButton == MouseButton::LEFT) { |