diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-04-09 14:57:27 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-04-09 15:59:33 +0300 |
commit | dd4d44a07d3a63ced0eec51c30b75887792c4a36 (patch) | |
tree | 26f3da1fd25d91eb8483dc1b819a1d3a3552e6af /src/gui/buyselldialog.h | |
parent | 099c67f93cf49cda90be55606e1b744c47624b92 (diff) | |
download | plus-dd4d44a07d3a63ced0eec51c30b75887792c4a36.tar.gz plus-dd4d44a07d3a63ced0eec51c30b75887792c4a36.tar.bz2 plus-dd4d44a07d3a63ced0eec51c30b75887792c4a36.tar.xz plus-dd4d44a07d3a63ced0eec51c30b75887792c4a36.zip |
some more style and cast fixes.
Diffstat (limited to 'src/gui/buyselldialog.h')
-rw-r--r-- | src/gui/buyselldialog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/buyselldialog.h b/src/gui/buyselldialog.h index 371e8bdd9..ef3a98f18 100644 --- a/src/gui/buyselldialog.h +++ b/src/gui/buyselldialog.h @@ -64,7 +64,7 @@ class BuySellDialog final : public Window, public gcn::ActionListener * Returns true if any instances exist. */ static bool isActive() A_WARN_UNUSED - { return !instances.empty(); } + { return !dialogInstances.empty(); } /** * Closes all instances. @@ -73,7 +73,7 @@ class BuySellDialog final : public Window, public gcn::ActionListener private: typedef std::list<BuySellDialog*> DialogList; - static DialogList instances; + static DialogList dialogInstances; int mNpcId; std::string mNick; |