diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-06-21 21:29:51 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-06-21 21:29:51 +0300 |
commit | f3a89322713a379678abc420d75230a9b17aa18f (patch) | |
tree | 1fa4318ba77eeef61272eb6cd982c7bf37b82800 /src/client.cpp | |
parent | 552867509d2a29d806d2ba416b24fbf7ac711803 (diff) | |
download | plus-f3a89322713a379678abc420d75230a9b17aa18f.tar.gz plus-f3a89322713a379678abc420d75230a9b17aa18f.tar.bz2 plus-f3a89322713a379678abc420d75230a9b17aa18f.tar.xz plus-f3a89322713a379678abc420d75230a9b17aa18f.zip |
fix code style.
Diffstat (limited to 'src/client.cpp')
-rw-r--r-- | src/client.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client.cpp b/src/client.cpp index 7b0756623..029c9c417 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -283,7 +283,9 @@ Client::Client(const Options &options) : mVideoButton(nullptr), mThemesButton(nullptr), mPerfomanceButton(nullptr), +#ifdef ANDROID mCloseButton(nullptr), +#endif mState(STATE_CHOOSE_SERVER), mOldState(STATE_START), mIcon(nullptr), @@ -2978,7 +2980,7 @@ void Client::windowRemoved(const Window *const window) inst->mCurrentDialog = nullptr; } -void Client::updateScreenKeyboard(int height A_UNUSED) +void Client::updateScreenKeyboard(int height) { instance()->mKeyboardHeight = height; } |