diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-18 17:28:44 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-19 15:12:21 +0300 |
commit | 85eebe87172021e63267515c6a7964efccb6015c (patch) | |
tree | 327af5e352a875fe3eaf9202a88e6038a06aa083 /src/gui | |
parent | 1389a0367d37c07ddd4105651a82fa30b407d08a (diff) | |
download | plus-85eebe87172021e63267515c6a7964efccb6015c.tar.gz plus-85eebe87172021e63267515c6a7964efccb6015c.tar.bz2 plus-85eebe87172021e63267515c6a7964efccb6015c.tar.xz plus-85eebe87172021e63267515c6a7964efccb6015c.zip |
move virtual member calls from mpcdialog constuctor into postInit.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/windows/npcdialog.cpp | 4 | ||||
-rw-r--r-- | src/gui/windows/npcdialog.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/gui/windows/npcdialog.cpp b/src/gui/windows/npcdialog.cpp index ba8754482..e8caa0722 100644 --- a/src/gui/windows/npcdialog.cpp +++ b/src/gui/windows/npcdialog.cpp @@ -184,6 +184,10 @@ NpcDialog::NpcDialog(const int npcId) : loadWindowState(); instances.push_back(this); +} + +void NpcDialog::postInit() +{ setVisible(true); requestFocus(); enableVisibleSound(true); diff --git a/src/gui/windows/npcdialog.h b/src/gui/windows/npcdialog.h index f48e782d9..4e907e325 100644 --- a/src/gui/windows/npcdialog.h +++ b/src/gui/windows/npcdialog.h @@ -72,6 +72,8 @@ class NpcDialog final : public Window, ~NpcDialog(); + void postInit(); + /** * Called when receiving actions from the widgets. */ |