diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-17 20:03:14 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-17 20:03:14 +0300 |
commit | 55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d (patch) | |
tree | b1108bef76eed589fcb0028c4bd97f14510e940f /src/net/tmwa/playerhandler.h | |
parent | 72b9b0b8b7f3e0b60bf7a926b44aaa589dd131e8 (diff) | |
download | plus-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/tmwa/playerhandler.h')
-rw-r--r-- | src/net/tmwa/playerhandler.h | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/src/net/tmwa/playerhandler.h b/src/net/tmwa/playerhandler.h index c97aee27c..320ca6b07 100644 --- a/src/net/tmwa/playerhandler.h +++ b/src/net/tmwa/playerhandler.h @@ -36,53 +36,53 @@ class PlayerHandler final : public Ea::PlayerHandler A_DELETE_COPY(PlayerHandler) void attack(const BeingId id, - const Keep keep) const override final; - void stopAttack() const override final; - void emote(const uint8_t emoteId) const override final; + const Keep keep) const final; + void stopAttack() const final; + void emote(const uint8_t emoteId) const final; void increaseAttribute(const AttributesT attr, - const int amount) const override final; - void increaseSkill(const uint16_t skillId) const override final; + const int amount) const final; + void increaseSkill(const uint16_t skillId) const final; - void pickUp(const FloorItem *const floorItem) const override final; - void setDirection(const unsigned char direction) const override final; + void pickUp(const FloorItem *const floorItem) const final; + void setDirection(const unsigned char direction) const final; void setDestination(const int x, const int y, - const int direction) const override final; + const int direction) const final; void changeAction(const BeingActionT &action) - const override final; - void requestOnlineList() const override final A_CONST; - void updateStatus(const uint8_t status) const override final A_CONST; + const final; + void requestOnlineList() const final A_CONST; + void updateStatus(const uint8_t status) const final A_CONST; - void respawn() const override final; + void respawn() const final; void setShortcut(const int idx, const uint8_t type, const int id, - const int level) const override final A_CONST; + const int level) const final A_CONST; - void shortcutShiftRow(const int row) const override final; + void shortcutShiftRow(const int row) const final; - void removeOption() const override final A_CONST; + void removeOption() const final A_CONST; - void changeCart(const int type) const override final A_CONST; + void changeCart(const int type) const final A_CONST; - void setMemo() const override final A_CONST; + void setMemo() const final A_CONST; - void doriDori() const override final A_CONST; + void doriDori() const final A_CONST; - void explosionSpirits() const override final A_CONST; + void explosionSpirits() const final A_CONST; - void requestPvpInfo() const override final A_CONST; + void requestPvpInfo() const final A_CONST; - void revive() const override final A_CONST; + void revive() const final A_CONST; - void setViewEquipment(const bool allow) const override final A_CONST; + void setViewEquipment(const bool allow) const final A_CONST; void setStat(Net::MessageIn &msg, const int type, const int base, const int mod, - const Notify notify) const override final; + const Notify notify) const final; }; } // namespace TmwAthena |