diff options
Diffstat (limited to 'src/net/ea/buysellhandler.cpp')
-rw-r--r-- | src/net/ea/buysellhandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/ea/buysellhandler.cpp b/src/net/ea/buysellhandler.cpp index f1eb536fd..601c3fbdf 100644 --- a/src/net/ea/buysellhandler.cpp +++ b/src/net/ea/buysellhandler.cpp @@ -57,7 +57,7 @@ void BuySellHandler::requestSellList(const std::string &nick) const if (nick.empty() != 0 || !shopWindow) return; - const std::string data = "!selllist " + toString(tick_time); + const std::string data("!selllist " + toString(tick_time)); shopWindow->setAcceptPlayer(nick); if (config.getBoolValue("hideShopMessages")) @@ -76,7 +76,7 @@ void BuySellHandler::requestBuyList(const std::string &nick) const if (nick.empty() || !shopWindow) return; - const std::string data = "!buylist " + toString(tick_time); + const std::string data("!buylist " + toString(tick_time)); shopWindow->setAcceptPlayer(nick); if (config.getBoolValue("hideShopMessages")) |