diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-08-19 20:42:46 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-08-19 20:42:46 +0300 |
commit | 7191eefef8c7a02c7cf56f598ea76fe791328434 (patch) | |
tree | d45d89df864f4ea4906e764c0a825a7daf63e3e3 /src/gui/tradewindow.h | |
parent | 05d7793aa71a600d76d169ca80744768b277c17b (diff) | |
download | plus-7191eefef8c7a02c7cf56f598ea76fe791328434.tar.gz plus-7191eefef8c7a02c7cf56f598ea76fe791328434.tar.bz2 plus-7191eefef8c7a02c7cf56f598ea76fe791328434.tar.xz plus-7191eefef8c7a02c7cf56f598ea76fe791328434.zip |
Fix adding items to trade.
Now possible add same items from all ways.
Also added protection from adding same stackable items.
Diffstat (limited to 'src/gui/tradewindow.h')
-rw-r--r-- | src/gui/tradewindow.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gui/tradewindow.h b/src/gui/tradewindow.h index 3c5ed56b0..16b3d9d6f 100644 --- a/src/gui/tradewindow.h +++ b/src/gui/tradewindow.h @@ -95,7 +95,7 @@ class TradeWindow : public Window, gcn::ActionListener, gcn::SelectionListener /** * Send trade packet. */ - void tradeItem(Item *item, int quantity); + void tradeItem(Item *item, int quantity, bool check = false); /** * Updates the labels and makes sure only one item is selected in @@ -131,6 +131,8 @@ class TradeWindow : public Window, gcn::ActionListener, gcn::SelectionListener std::string getAutoTradeNick() { return mAutoAddToNick; } + bool checkItem(Item *item); + private: enum Status { |