diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-19 12:50:59 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-19 15:12:22 +0300 |
commit | e4d34f9e3f5b2068be1a8137c75a571e9da42cda (patch) | |
tree | 97d0e13dd2f163e9ce91576b29eec8563899097c /src/gui/popups/textpopup.cpp | |
parent | ecc414fed44c8b0ee63c0acf188a109e3867a815 (diff) | |
download | plus-e4d34f9e3f5b2068be1a8137c75a571e9da42cda.tar.gz plus-e4d34f9e3f5b2068be1a8137c75a571e9da42cda.tar.bz2 plus-e4d34f9e3f5b2068be1a8137c75a571e9da42cda.tar.xz plus-e4d34f9e3f5b2068be1a8137c75a571e9da42cda.zip |
move virtual member calls from textpopup constructor into postInit.
Diffstat (limited to 'src/gui/popups/textpopup.cpp')
-rw-r--r-- | src/gui/popups/textpopup.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/popups/textpopup.cpp b/src/gui/popups/textpopup.cpp index 2b89e388b..73f5fbad0 100644 --- a/src/gui/popups/textpopup.cpp +++ b/src/gui/popups/textpopup.cpp @@ -33,6 +33,10 @@ TextPopup::TextPopup(): Popup("TextPopup", "textpopup.xml"), mText() { +} + +void TextPopup::postInit() +{ const int fontHeight = getFont()->getHeight(); int y = 0; for (int f = 0; f < TEXTPOPUPCOUNT; f ++) |