diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-05-21 21:31:34 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-05-21 21:31:34 +0300 |
commit | ba307a72cb8bcfe068e362fab4a5e572d9ac65e9 (patch) | |
tree | c3f3d27c6c5ff2d7523832a023f910abe1b7e196 /src/gui/popups/textboxpopup.cpp | |
parent | bd96450423276272e1cddf8be91cc63f860eb125 (diff) | |
download | mv-ba307a72cb8bcfe068e362fab4a5e572d9ac65e9.tar.gz mv-ba307a72cb8bcfe068e362fab4a5e572d9ac65e9.tar.bz2 mv-ba307a72cb8bcfe068e362fab4a5e572d9ac65e9.tar.xz mv-ba307a72cb8bcfe068e362fab4a5e572d9ac65e9.zip |
Call Popup::postInit from all popups with overrided postInit method.
Diffstat (limited to 'src/gui/popups/textboxpopup.cpp')
-rw-r--r-- | src/gui/popups/textboxpopup.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/popups/textboxpopup.cpp b/src/gui/popups/textboxpopup.cpp index f464fa885..1d8d85a14 100644 --- a/src/gui/popups/textboxpopup.cpp +++ b/src/gui/popups/textboxpopup.cpp @@ -39,6 +39,7 @@ TextBoxPopup::TextBoxPopup() : void TextBoxPopup::postInit() { + Popup::postInit(); const int fontHeight = getFont()->getHeight(); setMinHeight(fontHeight); mTextBox->setEditable(false); |