diff options
Diffstat (limited to 'src/gui/windows')
-rw-r--r-- | src/gui/windows/tradewindow.cpp | 9 | ||||
-rw-r--r-- | src/gui/windows/tradewindow.h | 4 |
2 files changed, 8 insertions, 5 deletions
diff --git a/src/gui/windows/tradewindow.cpp b/src/gui/windows/tradewindow.cpp index 1fccb0c0b..21144b341 100644 --- a/src/gui/windows/tradewindow.cpp +++ b/src/gui/windows/tradewindow.cpp @@ -191,8 +191,11 @@ void TradeWindow::setMoney(const int amount) mMoneyLabel->adjustSize(); } -void TradeWindow::addItem(const int id, const bool own, const int quantity, - const int refine, const unsigned char color) const +void TradeWindow::addItem(const int id, + const bool own, + const int quantity, + const uint8_t refine, + const unsigned char color) const { if (own) mMyInventory->addItem(id, quantity, refine, color); @@ -201,7 +204,7 @@ void TradeWindow::addItem(const int id, const bool own, const int quantity, } void TradeWindow::addItem2(const int id, const bool own, const int quantity, - const int refine, const unsigned char color, + const uint8_t refine, const unsigned char color, const bool equipment) const { if (own) diff --git a/src/gui/windows/tradewindow.h b/src/gui/windows/tradewindow.h index 447e99144..0c01c81cd 100644 --- a/src/gui/windows/tradewindow.h +++ b/src/gui/windows/tradewindow.h @@ -68,7 +68,7 @@ class TradeWindow final : public Window, * Add an item to the trade window. */ void addItem(const int id, const bool own, const int quantity, - const int refine, const unsigned char color) const; + const uint8_t refine, const unsigned char color) const; /** * Reset both item containers @@ -79,7 +79,7 @@ class TradeWindow final : public Window, * Add an item to the trade window. */ void addItem2(const int id, const bool own, const int quantity, - const int refine, const unsigned char color, + const uint8_t refine, const unsigned char color, const bool equipment) const; /** |