diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-01-28 16:14:15 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-01-28 16:14:15 +0300 |
commit | 226202ff807dc860991af0d6665ef9e9b48c1bed (patch) | |
tree | de0be738585f3ab2556865c206981d2d2842ac69 /src/gui/widgets/textfield.cpp | |
parent | eb62e14c838788ae7691567a90bf7fe4940d5687 (diff) | |
download | plus-226202ff807dc860991af0d6665ef9e9b48c1bed.tar.gz plus-226202ff807dc860991af0d6665ef9e9b48c1bed.tar.bz2 plus-226202ff807dc860991af0d6665ef9e9b48c1bed.tar.xz plus-226202ff807dc860991af0d6665ef9e9b48c1bed.zip |
Move direct SDL_GetMouseState calls into method in gui class.
Diffstat (limited to 'src/gui/widgets/textfield.cpp')
-rw-r--r-- | src/gui/widgets/textfield.cpp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/gui/widgets/textfield.cpp b/src/gui/widgets/textfield.cpp index 07fde23cd..41084c867 100644 --- a/src/gui/widgets/textfield.cpp +++ b/src/gui/widgets/textfield.cpp @@ -741,10 +741,13 @@ void TextField::mousePressed(gcn::MouseEvent &mouseEvent) mPopupMenu = new PopupMenu(); mPopupMenu->postInit(); } - int x = 0; - int y = 0; - SDL_GetMouseState(&x, &y); - mPopupMenu->showTextFieldPopup(x, y, this); + if (gui) + { + int x = 0; + int y = 0; + gui->getMouseState(&x, &y); + mPopupMenu->showTextFieldPopup(x, y, this); + } } } else |