summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-08-22 20:12:44 +0300
committerAndrei Karas <akaras@inbox.ru>2017-08-22 20:12:44 +0300
commit17e9519c2ee0b126db5ba1df61dcddf9f7b90b47 (patch)
treea0fd7d9fb11e1922f412b54fbcff0a8ce9ae8698 /src/net/tmwa
parent7caa4b48dd0d8ba320b3af2e77c15ecd49d06b58 (diff)
downloadplus-17e9519c2ee0b126db5ba1df61dcddf9f7b90b47.tar.gz
plus-17e9519c2ee0b126db5ba1df61dcddf9f7b90b47.tar.bz2
plus-17e9519c2ee0b126db5ba1df61dcddf9f7b90b47.tar.xz
plus-17e9519c2ee0b126db5ba1df61dcddf9f7b90b47.zip
Move requestCheckName from BeingHandler into Mail2Handler.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/beinghandler.cpp4
-rw-r--r--src/net/tmwa/beinghandler.h2
-rw-r--r--src/net/tmwa/mail2handler.cpp4
-rw-r--r--src/net/tmwa/mail2handler.h2
4 files changed, 6 insertions, 6 deletions
diff --git a/src/net/tmwa/beinghandler.cpp b/src/net/tmwa/beinghandler.cpp
index 74b0334fd..c4e57627e 100644
--- a/src/net/tmwa/beinghandler.cpp
+++ b/src/net/tmwa/beinghandler.cpp
@@ -71,8 +71,4 @@ void BeingHandler::requestNameByCharId(const int id A_UNUSED) const
{
}
-void BeingHandler::requestCheckName(const std::string &name A_UNUSED) const
-{
-}
-
} // namespace TmwAthena
diff --git a/src/net/tmwa/beinghandler.h b/src/net/tmwa/beinghandler.h
index e7eeb148c..04cced3ed 100644
--- a/src/net/tmwa/beinghandler.h
+++ b/src/net/tmwa/beinghandler.h
@@ -48,8 +48,6 @@ class BeingHandler final : public Ea::BeingHandler
A_CONST;
void requestNameByCharId(const int id) const override final A_CONST;
-
- void requestCheckName(const std::string &name) const override final;
};
} // namespace TmwAthena
diff --git a/src/net/tmwa/mail2handler.cpp b/src/net/tmwa/mail2handler.cpp
index c96506ce8..1224ed79d 100644
--- a/src/net/tmwa/mail2handler.cpp
+++ b/src/net/tmwa/mail2handler.cpp
@@ -98,4 +98,8 @@ void Mail2Handler::cancelWriteMail() const
{
}
+void Mail2Handler::requestCheckName(const std::string &name A_UNUSED) const
+{
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/mail2handler.h b/src/net/tmwa/mail2handler.h
index ce01bd180..0bc0e2bb2 100644
--- a/src/net/tmwa/mail2handler.h
+++ b/src/net/tmwa/mail2handler.h
@@ -71,6 +71,8 @@ class Mail2Handler final : public Net::Mail2Handler
void closeMailBox() const override final;
void cancelWriteMail() const override final;
+
+ void requestCheckName(const std::string &name) const override final;
};
} // namespace TmwAthena