summaryrefslogtreecommitdiff
path: root/src/net/eathena/charserverhandler.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-04-17 20:03:14 +0300
committerAndrei Karas <akaras@inbox.ru>2016-04-17 20:03:14 +0300
commit55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d (patch)
treeb1108bef76eed589fcb0028c4bd97f14510e940f /src/net/eathena/charserverhandler.h
parent72b9b0b8b7f3e0b60bf7a926b44aaa589dd131e8 (diff)
downloadplus-55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d.tar.gz
plus-55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d.tar.bz2
plus-55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d.tar.xz
plus-55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d.zip
Remove override keyword, if it present with final.
Diffstat (limited to 'src/net/eathena/charserverhandler.h')
-rw-r--r--src/net/eathena/charserverhandler.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/net/eathena/charserverhandler.h b/src/net/eathena/charserverhandler.h
index 833c5d6ad..8eee59a20 100644
--- a/src/net/eathena/charserverhandler.h
+++ b/src/net/eathena/charserverhandler.h
@@ -39,7 +39,7 @@ class CharServerHandler final : public Ea::CharServerHandler
A_DELETE_COPY(CharServerHandler)
void chooseCharacter(Net::Character *const character) const
- override final;
+ final;
void newCharacter(const std::string &name,
const int slot,
@@ -48,21 +48,21 @@ class CharServerHandler final : public Ea::CharServerHandler
const int hairColor,
const unsigned char race,
const uint16_t look,
- const std::vector<int> &stats) const override final;
+ const std::vector<int> &stats) const final;
void renameCharacter(const BeingId id,
- const std::string &newName) const override final;
+ const std::string &newName) const final;
void deleteCharacter(Net::Character *const character,
- const std::string &email) const override final;
+ const std::string &email) const final;
- void switchCharacter() const override final;
+ void switchCharacter() const final;
- void connect() const override final;
+ void connect() const final;
- bool isNeedCreatePin() const override final A_WARN_UNUSED;
+ bool isNeedCreatePin() const final A_WARN_UNUSED;
- void setNewPincode(const std::string &pin) const override final
+ void setNewPincode(const std::string &pin) const final
A_CONST;
/**
@@ -71,14 +71,14 @@ class CharServerHandler final : public Ea::CharServerHandler
* the dialog when a new character failed to be created.
*/
void setCharCreateDialog(CharCreateDialog *const window) const
- override final;
+ final;
void changeSlot(const int oldSlot,
- const int newSlot) const override final;
+ const int newSlot) const final;
- void ping() const override final;
+ void ping() const final;
- unsigned int hatSprite() const override final A_CONST A_WARN_UNUSED;
+ unsigned int hatSprite() const final A_CONST A_WARN_UNUSED;
};
} // namespace EAthena