diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-06-20 17:42:33 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-06-20 21:11:13 +0300 |
commit | 8963c582f2d2f2879b69821337a5c396f9712a06 (patch) | |
tree | 9cc8f89e3116bb09ad3f4a30f7552fad6e83fe57 /src/client.h | |
parent | 65f5f9343a75a5adabdf840db93106cda71c703f (diff) | |
download | ManaVerse-8963c582f2d2f2879b69821337a5c396f9712a06.tar.gz ManaVerse-8963c582f2d2f2879b69821337a5c396f9712a06.tar.bz2 ManaVerse-8963c582f2d2f2879b69821337a5c396f9712a06.tar.xz ManaVerse-8963c582f2d2f2879b69821337a5c396f9712a06.zip |
Fix code style.
Diffstat (limited to 'src/client.h')
-rw-r--r-- | src/client.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/client.h b/src/client.h index 4a5d5016d..6dff50877 100644 --- a/src/client.h +++ b/src/client.h @@ -81,7 +81,7 @@ public: int gameExec(); - int testsExec() const; + static int testsExec(); void setState(const State state) { mState = state; } @@ -89,13 +89,13 @@ public: State getState() const A_WARN_UNUSED { return mState; } - bool isTmw() const A_WARN_UNUSED; + static bool isTmw() A_WARN_UNUSED; void optionChanged(const std::string &name) override final; void action(const ActionEvent &event) override final; - void initTradeFilter() const; + static void initTradeFilter(); void moveButtons(const int width); @@ -108,9 +108,9 @@ private: void initConfigListeners(); - void initGraphics(); + static void initGraphics(); - void updateEnv(); + static void updateEnv(); static void initFeatures(); |