summaryrefslogtreecommitdiff
path: root/src/client.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-05-13 13:56:12 +0300
committerAndrei Karas <akaras@inbox.ru>2013-05-13 13:58:33 +0300
commit0faf49cf2c2290e070f34c3f73973642a8e8c96c (patch)
tree69a4a9e14135b649f632130479461b386609703e /src/client.cpp
parent0c53763c1eb42b9567459451ce47ef7239e151c6 (diff)
downloadplus-0faf49cf2c2290e070f34c3f73973642a8e8c96c.tar.gz
plus-0faf49cf2c2290e070f34c3f73973642a8e8c96c.tar.bz2
plus-0faf49cf2c2290e070f34c3f73973642a8e8c96c.tar.xz
plus-0faf49cf2c2290e070f34c3f73973642a8e8c96c.zip
fix code style and compilation warnings.
Diffstat (limited to 'src/client.cpp')
-rw-r--r--src/client.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/client.cpp b/src/client.cpp
index 168dd3df9..67926d50a 100644
--- a/src/client.cpp
+++ b/src/client.cpp
@@ -288,20 +288,20 @@ Client::Client(const Options &options) :
mIcon(nullptr),
mLogicCounterId(nullptr),
mSecondsCounterId(nullptr),
- mLimitFps(false),
- mConfigAutoSaved(false),
- mIsMinimized(false),
- mInputFocused(true),
- mMouseFocused(true),
- mGuiAlpha(1.0f),
mCaption(),
- mNewMessageFlag(false),
mFpsManager(),
mSkin(nullptr),
mButtonPadding(1),
mButtonSpacing(3),
mKeyboardHeight(0),
- mOldUpdates()
+ mOldUpdates(),
+ mGuiAlpha(1.0f),
+ mLimitFps(false),
+ mConfigAutoSaved(false),
+ mIsMinimized(false),
+ mInputFocused(true),
+ mMouseFocused(true),
+ mNewMessageFlag(false)
{
mInstance = this;