diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-17 21:33:53 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-19 15:12:17 +0300 |
commit | 71d7483a1d35a7068c456dfe6d3c0e54f1ae71a3 (patch) | |
tree | 50ade3b1480b5ea9f45106ce37e218b8700a30e5 /src/gui/windows/charselectdialog.cpp | |
parent | 03aa86f565161e731342aa02348dd56d6c5591b0 (diff) | |
download | plus-71d7483a1d35a7068c456dfe6d3c0e54f1ae71a3.tar.gz plus-71d7483a1d35a7068c456dfe6d3c0e54f1ae71a3.tar.bz2 plus-71d7483a1d35a7068c456dfe6d3c0e54f1ae71a3.tar.xz plus-71d7483a1d35a7068c456dfe6d3c0e54f1ae71a3.zip |
add postinit function into window.
use postinit for call virtual functions in charselectdialog.
Diffstat (limited to 'src/gui/windows/charselectdialog.cpp')
-rw-r--r-- | src/gui/windows/charselectdialog.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/gui/windows/charselectdialog.cpp b/src/gui/windows/charselectdialog.cpp index 1c960b11c..d99b973b3 100644 --- a/src/gui/windows/charselectdialog.cpp +++ b/src/gui/windows/charselectdialog.cpp @@ -188,8 +188,6 @@ CharSelectDialog::CharSelectDialog(LoginData *const data): } addKeyListener(this); center(); - setVisible(true); - requestFocus(); Net::getCharServerHandler()->setCharSelectDialog(this); mCharacterView->show(0); @@ -201,6 +199,12 @@ CharSelectDialog::~CharSelectDialog() Net::getCharServerHandler()->clear(); } +void CharSelectDialog::postInit() +{ + setVisible(true); + requestFocus(); +} + void CharSelectDialog::action(const gcn::ActionEvent &event) { // Check if a button of a character was pressed |