summaryrefslogtreecommitdiff
path: root/src/net/eathena
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-02-15 02:10:09 +0300
committerAndrei Karas <akaras@inbox.ru>2018-02-15 02:10:09 +0300
commit435c12617241fb87225987f2e3f0521cf2dbae75 (patch)
tree16add38ce29c63cea06757bb835eadbfb4e59a01 /src/net/eathena
parentc29d9bec9751fbd836e59cb3ba60e778fca2f987 (diff)
downloadplus-435c12617241fb87225987f2e3f0521cf2dbae75.tar.gz
plus-435c12617241fb87225987f2e3f0521cf2dbae75.tar.bz2
plus-435c12617241fb87225987f2e3f0521cf2dbae75.tar.xz
plus-435c12617241fb87225987f2e3f0521cf2dbae75.zip
Remove unused channel parameter from talk methods.s20180215
Diffstat (limited to 'src/net/eathena')
-rw-r--r--src/net/eathena/chathandler.cpp6
-rw-r--r--src/net/eathena/chathandler.h6
2 files changed, 4 insertions, 8 deletions
diff --git a/src/net/eathena/chathandler.cpp b/src/net/eathena/chathandler.cpp
index 10f55bba4..22a84e32f 100644
--- a/src/net/eathena/chathandler.cpp
+++ b/src/net/eathena/chathandler.cpp
@@ -54,8 +54,7 @@ ChatHandler::~ChatHandler()
chatHandler = nullptr;
}
-void ChatHandler::talk(const std::string &restrict text,
- const std::string &restrict channel A_UNUSED) const
+void ChatHandler::talk(const std::string &restrict text) const
{
if (localPlayer == nullptr)
return;
@@ -287,8 +286,7 @@ void ChatHandler::partChannel(const std::string &channel) const
}
}
-void ChatHandler::talkPet(const std::string &restrict text,
- const std::string &restrict channel A_UNUSED) const
+void ChatHandler::talkPet(const std::string &restrict text) const
{
if (text.empty())
return;
diff --git a/src/net/eathena/chathandler.h b/src/net/eathena/chathandler.h
index e62cbb7d2..8e116ffc5 100644
--- a/src/net/eathena/chathandler.h
+++ b/src/net/eathena/chathandler.h
@@ -38,8 +38,7 @@ class ChatHandler final : public Ea::ChatHandler
~ChatHandler() override final;
- void talk(const std::string &restrict text,
- const std::string &restrict channel) const override final;
+ void talk(const std::string &restrict text) const override final;
void talkRaw(const std::string &text) const override final;
@@ -79,8 +78,7 @@ class ChatHandler final : public Ea::ChatHandler
void partChannel(const std::string &channel) const override final;
- void talkPet(const std::string &restrict text,
- const std::string &restrict channel) const override final;
+ void talkPet(const std::string &restrict text) const override final;
void leaveChatRoom() const override final;