From 4a337b7a42d0c92bc2ed26b7e206188dc04c569d Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 11 Feb 2015 12:16:03 +0300 Subject: Add typed bool type Equipm. --- src/gui/windows/tradewindow.cpp | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) (limited to 'src/gui/windows/tradewindow.cpp') diff --git a/src/gui/windows/tradewindow.cpp b/src/gui/windows/tradewindow.cpp index 41bde7c19..1dc1a9882 100644 --- a/src/gui/windows/tradewindow.cpp +++ b/src/gui/windows/tradewindow.cpp @@ -205,8 +205,16 @@ void TradeWindow::addItem(const int id, const Favorite favorite) const { Inventory *inv = own ? mMyInventory : mPartnerInventory; - inv->addItem(id, type, quantity, refine, color, - identified, damaged, favorite, false, false); + inv->addItem(id, + type, + quantity, + refine, + color, + identified, + damaged, + favorite, + Equipm_false, + false); } void TradeWindow::addItem2(const int id, @@ -220,11 +228,19 @@ void TradeWindow::addItem2(const int id, const Identified identified, const Damaged damaged, const Favorite favorite, - const bool equipment) const + const Equipm equipment) const { Inventory *inv = own ? mMyInventory : mPartnerInventory; - const int slot = inv->addItem(id, type, quantity, refine, color, - identified, damaged, favorite, equipment, false); + const int slot = inv->addItem(id, + type, + quantity, + refine, + color, + identified, + damaged, + favorite, + equipment, + false); if (slot >= 0) inv->setCards(slot, cards, sz); } -- cgit v1.2.3-60-g2f50