diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-14 19:48:40 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-14 19:48:40 +0300 |
commit | db461ee046e63b7148174c40e05de76c5d7be31a (patch) | |
tree | 06e4386463e495b8e74e7dbc2bfea0da6c34413a /src/gui/buyselldialog.h | |
parent | 066488a6f4d086b57f4fe32e8799c207552cccb7 (diff) | |
download | plus-db461ee046e63b7148174c40e05de76c5d7be31a.tar.gz plus-db461ee046e63b7148174c40e05de76c5d7be31a.tar.bz2 plus-db461ee046e63b7148174c40e05de76c5d7be31a.tar.xz plus-db461ee046e63b7148174c40e05de76c5d7be31a.zip |
Replace gcn::Button to Button in all classes.
Diffstat (limited to 'src/gui/buyselldialog.h')
-rw-r--r-- | src/gui/buyselldialog.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/gui/buyselldialog.h b/src/gui/buyselldialog.h index 1eb6d34f4..08a948145 100644 --- a/src/gui/buyselldialog.h +++ b/src/gui/buyselldialog.h @@ -27,10 +27,7 @@ #include <guichan/actionlistener.hpp> -namespace gcn -{ - class Button; -} +class Button; /** * A dialog to choose between buying or selling at a shop. @@ -80,7 +77,7 @@ class BuySellDialog final : public Window, public gcn::ActionListener int mNpcId; std::string mNick; - gcn::Button *mBuyButton; + Button *mBuyButton; }; #endif |