diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-07-14 23:43:54 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-07-14 23:43:54 +0300 |
commit | 15a79eee1b3baa91953daf33dc021a1e7c147365 (patch) | |
tree | 21fc078237a8c635308c1e84e0bba869918ba3d5 /src/gui/windows/tradewindow.h | |
parent | e1841e31c606f1d97ea54c3f00f3380db814f3d2 (diff) | |
download | manaverse-15a79eee1b3baa91953daf33dc021a1e7c147365.tar.gz manaverse-15a79eee1b3baa91953daf33dc021a1e7c147365.tar.bz2 manaverse-15a79eee1b3baa91953daf33dc021a1e7c147365.tar.xz manaverse-15a79eee1b3baa91953daf33dc021a1e7c147365.zip |
Change refine type to uint8_t.
Diffstat (limited to 'src/gui/windows/tradewindow.h')
-rw-r--r-- | src/gui/windows/tradewindow.h | 4 |
1 files changed, 2 insertions, 2 deletions
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; /** |