summaryrefslogtreecommitdiff
path: root/src/gui/tradewindow.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-05-27 22:16:21 +0300
committerAndrei Karas <akaras@inbox.ru>2013-05-27 22:18:46 +0300
commite64f2320f68c762b6822a5b616d5f3d4906c94f0 (patch)
treede597a1e14d9716cbaf0b7ca81a6cef3da06f9e7 /src/gui/tradewindow.h
parent64af3e6133b0f545cf1ad7ff565ee9e74e0d65b7 (diff)
downloadplus-e64f2320f68c762b6822a5b616d5f3d4906c94f0.tar.gz
plus-e64f2320f68c762b6822a5b616d5f3d4906c94f0.tar.bz2
plus-e64f2320f68c762b6822a5b616d5f3d4906c94f0.tar.xz
plus-e64f2320f68c762b6822a5b616d5f3d4906c94f0.zip
Improve tradewindow.
Diffstat (limited to 'src/gui/tradewindow.h')
-rw-r--r--src/gui/tradewindow.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/gui/tradewindow.h b/src/gui/tradewindow.h
index ebf0cf6b2..eb5a2369b 100644
--- a/src/gui/tradewindow.h
+++ b/src/gui/tradewindow.h
@@ -92,7 +92,8 @@ class TradeWindow final : public Window,
/**
* Increase quantity of an item.
*/
- void increaseQuantity(int index, bool own, int quantity) const;
+ void increaseQuantity(const int index, const bool own,
+ const int quantity) const;
/**
* Player received ok message from server
@@ -120,7 +121,7 @@ class TradeWindow final : public Window,
* Closes the Trade Window, as well as telling the server that the
* window has been closed.
*/
- void close();
+ void close() override;
/**
* Clear auto trade items.
@@ -135,7 +136,7 @@ class TradeWindow final : public Window,
void addAutoMoney(const std::string &nick, const int money);
- void initTrade(std::string nick);
+ void initTrade(const std::string &nick);
std::string getAutoTradeNick() const A_WARN_UNUSED
{ return mAutoAddToNick; }