diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-18 19:56:18 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-19 15:12:21 +0300 |
commit | 5c6dc4e9dc4e13e3531135ad434b540055c2393e (patch) | |
tree | 1bada0cf40a525faf72612123c11b55491e28be5 /src/gui/widgets/textfield.cpp | |
parent | 8e4604158dfa710aa505fb97f8a6ac9a16e37997 (diff) | |
download | plus-5c6dc4e9dc4e13e3531135ad434b540055c2393e.tar.gz plus-5c6dc4e9dc4e13e3531135ad434b540055c2393e.tar.bz2 plus-5c6dc4e9dc4e13e3531135ad434b540055c2393e.tar.xz plus-5c6dc4e9dc4e13e3531135ad434b540055c2393e.zip |
move virtual member calls from popupmenu constuctor into postInit.
Diffstat (limited to 'src/gui/widgets/textfield.cpp')
-rw-r--r-- | src/gui/widgets/textfield.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui/widgets/textfield.cpp b/src/gui/widgets/textfield.cpp index bf5485a7b..04527e1ae 100644 --- a/src/gui/widgets/textfield.cpp +++ b/src/gui/widgets/textfield.cpp @@ -566,7 +566,10 @@ void TextField::mousePressed(gcn::MouseEvent &mouseEvent) else { if (!mPopupMenu) + { mPopupMenu = new PopupMenu(); + mPopupMenu->postInit(); + } int x = 0; int y = 0; SDL_GetMouseState(&x, &y); |