summaryrefslogtreecommitdiff
path: root/src/gui/spellpopup.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-07-02 04:57:16 +0300
committerAndrei Karas <akaras@inbox.ru>2011-07-02 04:57:16 +0300
commit5f43cf85c7e59f0e1192f803560848777d64743f (patch)
tree283ddb56228ab7b19a62be6f6be0344e77745757 /src/gui/spellpopup.cpp
parentca58a3cced99fc2a8989da0155c1927bc0f08b6f (diff)
downloadplus-5f43cf85c7e59f0e1192f803560848777d64743f.tar.gz
plus-5f43cf85c7e59f0e1192f803560848777d64743f.tar.bz2
plus-5f43cf85c7e59f0e1192f803560848777d64743f.tar.xz
plus-5f43cf85c7e59f0e1192f803560848777d64743f.zip
Replace some getters to direct members access in graphics class.
Diffstat (limited to 'src/gui/spellpopup.cpp')
-rw-r--r--src/gui/spellpopup.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/spellpopup.cpp b/src/gui/spellpopup.cpp
index 3c6d17599..e867ec4e8 100644
--- a/src/gui/spellpopup.cpp
+++ b/src/gui/spellpopup.cpp
@@ -78,14 +78,14 @@ void SpellPopup::view(int x, int y)
int posX = std::max(0, x - getWidth() / 2);
int posY = y + distance;
- if (posX + getWidth() > graphics->getWidth())
+ if (posX + getWidth() > graphics->mWidth)
{
- if (graphics->getWidth() > getWidth())
- posX = graphics->getWidth() - getWidth();
+ if (graphics->mWidth > getWidth())
+ posX = graphics->mWidth - getWidth();
else
posX = 0;
}
- if (posY + getHeight() > graphics->getHeight())
+ if (posY + getHeight() > graphics->mHeight)
{
if (y > getHeight() + distance)
posY = y - getHeight() - distance;