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/statuspopup.cpp | |
parent | bd96450423276272e1cddf8be91cc63f860eb125 (diff) | |
download | plus-ba307a72cb8bcfe068e362fab4a5e572d9ac65e9.tar.gz plus-ba307a72cb8bcfe068e362fab4a5e572d9ac65e9.tar.bz2 plus-ba307a72cb8bcfe068e362fab4a5e572d9ac65e9.tar.xz plus-ba307a72cb8bcfe068e362fab4a5e572d9ac65e9.zip |
Call Popup::postInit from all popups with overrided postInit method.
Diffstat (limited to 'src/gui/popups/statuspopup.cpp')
-rw-r--r-- | src/gui/popups/statuspopup.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/popups/statuspopup.cpp b/src/gui/popups/statuspopup.cpp index b4652fb04..17894f04c 100644 --- a/src/gui/popups/statuspopup.cpp +++ b/src/gui/popups/statuspopup.cpp @@ -54,6 +54,7 @@ StatusPopup::StatusPopup() : void StatusPopup::postInit() { + Popup::postInit(); const int fontHeight = getFont()->getHeight(); int y = 0; addLabel(0); |