diff options
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; |