diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-03-08 06:07:15 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-03-08 06:07:15 +0300 |
commit | fc1ca42ed5a1b2d83a1dc8f94709a057b8e28e9d (patch) | |
tree | f7f8af4849bc214a27ea8205410568b76ce5ec30 /src/progs/manaplus | |
parent | 6b3b81988ea37207eeeb2994761e307c6b6fb340 (diff) | |
download | plus-fc1ca42ed5a1b2d83a1dc8f94709a057b8e28e9d.tar.gz plus-fc1ca42ed5a1b2d83a1dc8f94709a057b8e28e9d.tar.bz2 plus-fc1ca42ed5a1b2d83a1dc8f94709a057b8e28e9d.tar.xz plus-fc1ca42ed5a1b2d83a1dc8f94709a057b8e28e9d.zip |
Add support for change pin code by server request.
Diffstat (limited to 'src/progs/manaplus')
-rw-r--r-- | src/progs/manaplus/client.cpp | 13 | ||||
-rw-r--r-- | src/progs/manaplus/client.h | 2 |
2 files changed, 15 insertions, 0 deletions
diff --git a/src/progs/manaplus/client.cpp b/src/progs/manaplus/client.cpp index 504916ea7..4b9132b53 100644 --- a/src/progs/manaplus/client.cpp +++ b/src/progs/manaplus/client.cpp @@ -1861,6 +1861,19 @@ void Client::focusWindow() } } +void Client::updatePinState() +{ + if (mCurrentDialog == nullptr || + mState != State::CHAR_SELECT) + { + return; + } + CharSelectDialog *const dialog = + dynamic_cast<CharSelectDialog*>(mCurrentDialog); + if (dialog != nullptr) + pincodeManager.updateState(); +} + void Client::logVars() { #ifdef ANDROID diff --git a/src/progs/manaplus/client.h b/src/progs/manaplus/client.h index 28ab7323e..0cd26f454 100644 --- a/src/progs/manaplus/client.h +++ b/src/progs/manaplus/client.h @@ -90,6 +90,8 @@ class Client final : public ConfigListener, void focusWindow(); + void updatePinState(); + void slowLogic(); ServerInfo &getCurrentServer() |