diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-21 17:43:19 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-10-21 17:43:19 +0300 |
commit | e3ad003fe09ff90524ffa5deae844e6721b903b2 (patch) | |
tree | 756f8cae3ee12060548384ece6750a25bee4ab45 /src/gui/windows/tradewindow.cpp | |
parent | 4ab7d38fe9033695e23042e97b55999b26f00fd7 (diff) | |
download | mv-e3ad003fe09ff90524ffa5deae844e6721b903b2.tar.gz mv-e3ad003fe09ff90524ffa5deae844e6721b903b2.tar.bz2 mv-e3ad003fe09ff90524ffa5deae844e6721b903b2.tar.xz mv-e3ad003fe09ff90524ffa5deae844e6721b903b2.zip |
Set cards from net code.
Diffstat (limited to 'src/gui/windows/tradewindow.cpp')
-rw-r--r-- | src/gui/windows/tradewindow.cpp | 30 |
1 files changed, 10 insertions, 20 deletions
diff --git a/src/gui/windows/tradewindow.cpp b/src/gui/windows/tradewindow.cpp index 6bf091625..c7cd1712d 100644 --- a/src/gui/windows/tradewindow.cpp +++ b/src/gui/windows/tradewindow.cpp @@ -199,19 +199,14 @@ void TradeWindow::addItem(const int id, const bool damaged, const bool favorite) const { - if (own) - { - mMyInventory->addItem(id, quantity, refine, color, - identified, damaged, favorite, false, false); - } - else - { - mPartnerInventory->addItem(id, quantity, refine, color, - identified, damaged, favorite, false, false); - } + Inventory *inv = own ? mMyInventory.get() : mPartnerInventory.get(); + inv->addItem(id, quantity, refine, color, + identified, damaged, favorite, false, false); } void TradeWindow::addItem2(const int id, + const int *const cards, + const int sz, const bool own, const int quantity, const uint8_t refine, @@ -221,16 +216,11 @@ void TradeWindow::addItem2(const int id, const bool favorite, const bool equipment) const { - if (own) - { - mMyInventory->addItem(id, quantity, refine, color, - identified, damaged, favorite, equipment, false); - } - else - { - mPartnerInventory->addItem(id, quantity, refine, color, - identified, damaged, favorite, equipment, false); - } + Inventory *inv = own ? mMyInventory.get() : mPartnerInventory.get(); + const int slot = inv->addItem(id, quantity, refine, color, + identified, damaged, favorite, equipment, false); + if (slot >= 0) + inv->setCards(slot, cards, sz); } void TradeWindow::changeQuantity(const int index, const bool own, |