summaryrefslogtreecommitdiff
path: root/src/net/eathena/mailhandler.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-05-08 16:29:20 +0300
committerAndrei Karas <akaras@inbox.ru>2015-05-08 16:29:20 +0300
commitab38f105a42355cbf207bf4da48c0c386892781c (patch)
tree713b45108c805241fe5714146dfe0aff2bfd2d13 /src/net/eathena/mailhandler.h
parentf8042d0cf07ebb4b10094ac242591d8edf7067ba (diff)
downloadplus-ab38f105a42355cbf207bf4da48c0c386892781c.tar.gz
plus-ab38f105a42355cbf207bf4da48c0c386892781c.tar.bz2
plus-ab38f105a42355cbf207bf4da48c0c386892781c.tar.xz
plus-ab38f105a42355cbf207bf4da48c0c386892781c.zip
Fix code style.
Diffstat (limited to 'src/net/eathena/mailhandler.h')
-rw-r--r--src/net/eathena/mailhandler.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/net/eathena/mailhandler.h b/src/net/eathena/mailhandler.h
index 3b0d17574..88e1e0e25 100644
--- a/src/net/eathena/mailhandler.h
+++ b/src/net/eathena/mailhandler.h
@@ -38,25 +38,25 @@ class MailHandler final : public MessageHandler, public Net::MailHandler
void handleMessage(Net::MessageIn &msg) override final;
- void refresh() override final;
+ void refresh() const override final;
- void readMessage(const int msgId) override final;
+ void readMessage(const int msgId) const override final;
- void getAttach(const int msgId) override final;
+ void getAttach(const int msgId) const override final;
- void deleteMessage(const int msgId) override final;
+ void deleteMessage(const int msgId) const override final;
- void returnMessage(const int msgId) override final;
+ void returnMessage(const int msgId) const override final;
- void setAttach(const int index, const int amount) override final;
+ void setAttach(const int index, const int amount) const override final;
- void setAttachMoney(const int money) override final;
+ void setAttachMoney(const int money) const override final;
- void resetAttach(const int flag) override final;
+ void resetAttach(const int flag) const override final;
void send(const std::string &name,
const std::string &title,
- std::string message) override final;
+ std::string message) const override final;
protected:
static void processMailOpen(Net::MessageIn &msg);