diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-11-16 22:35:17 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-11-16 22:35:17 +0300 |
commit | b3d17866a3c5700b52c2b0b954fce132a52c1dbf (patch) | |
tree | 7ba07c98a1842eb766de35e172f559dcf5ac6fb4 /src/gui/windows/serverdialog.cpp | |
parent | 5e8e53f6e795a84ab5ca6cfe0d08672878044707 (diff) | |
download | plus-b3d17866a3c5700b52c2b0b954fce132a52c1dbf.tar.gz plus-b3d17866a3c5700b52c2b0b954fce132a52c1dbf.tar.bz2 plus-b3d17866a3c5700b52c2b0b954fce132a52c1dbf.tar.xz plus-b3d17866a3c5700b52c2b0b954fce132a52c1dbf.zip |
Convert State enum into strong typed.
Diffstat (limited to 'src/gui/windows/serverdialog.cpp')
-rw-r--r-- | src/gui/windows/serverdialog.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/windows/serverdialog.cpp b/src/gui/windows/serverdialog.cpp index 135172f35..e35c3c8de 100644 --- a/src/gui/windows/serverdialog.cpp +++ b/src/gui/windows/serverdialog.cpp @@ -214,7 +214,7 @@ ServerDialog::~ServerDialog() void ServerDialog::connectToSelectedServer() { - if (client->getState() == STATE_CONNECT_SERVER) + if (client->getState() == State::CONNECT_SERVER) return; const int index = mServersList->getSelected(); @@ -263,7 +263,7 @@ void ServerDialog::connectToSelectedServer() config.setValue("usePersistentIP", mPersistentIPCheckBox->isSelected()); - client->setState(STATE_CONNECT_SERVER); + client->setState(State::CONNECT_SERVER); } void ServerDialog::action(const ActionEvent &event) @@ -314,7 +314,7 @@ void ServerDialog::keyPressed(KeyEvent &event) { case InputAction::GUI_CANCEL: event.consume(); - client->setState(STATE_EXIT); + client->setState(State::EXIT); return; case InputAction::GUI_SELECT: @@ -770,6 +770,6 @@ void ServerDialog::close() { if (mDownload) mDownload->cancel(); - client->setState(STATE_FORCE_QUIT); + client->setState(State::FORCE_QUIT); Window::close(); } |