summaryrefslogtreecommitdiff
path: root/src/gui/widgets/spellshortcutcontainer.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-08-17 21:05:17 +0300
committerAndrei Karas <akaras@inbox.ru>2014-08-17 21:05:17 +0300
commitd119e4425f418afe1198839a57e7b186d717d587 (patch)
tree32f67704ac02e373161607946ca130cc5397535a /src/gui/widgets/spellshortcutcontainer.cpp
parentc7f654988a90f377bea6cf04492c6577246a0549 (diff)
downloadplus-d119e4425f418afe1198839a57e7b186d717d587.tar.gz
plus-d119e4425f418afe1198839a57e7b186d717d587.tar.bz2
plus-d119e4425f418afe1198839a57e7b186d717d587.tar.xz
plus-d119e4425f418afe1198839a57e7b186d717d587.zip
Remove getters for mouse position and use direct variables.
Diffstat (limited to 'src/gui/widgets/spellshortcutcontainer.cpp')
-rw-r--r--src/gui/widgets/spellshortcutcontainer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/widgets/spellshortcutcontainer.cpp b/src/gui/widgets/spellshortcutcontainer.cpp
index 1ddf17981..0257cea08 100644
--- a/src/gui/widgets/spellshortcutcontainer.cpp
+++ b/src/gui/widgets/spellshortcutcontainer.cpp
@@ -259,8 +259,8 @@ void SpellShortcutContainer::mouseReleased(MouseEvent &event)
if (spell && popupMenu)
{
- popupMenu->showSpellPopup(viewport->getMouseX(),
- viewport->getMouseY(),
+ popupMenu->showSpellPopup(viewport->mMouseX,
+ viewport->mMouseY,
spell);
}
}
@@ -283,7 +283,7 @@ void SpellShortcutContainer::mouseMoved(MouseEvent &event)
if (spell && !spell->isEmpty())
{
spellPopup->setItem(spell);
- spellPopup->view(viewport->getMouseX(), viewport->getMouseY());
+ spellPopup->view(viewport->mMouseX, viewport->mMouseY);
}
else
{