From 55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 17 Apr 2016 20:03:14 +0300 Subject: Remove override keyword, if it present with final. --- src/net/tmwa/npchandler.h | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) (limited to 'src/net/tmwa/npchandler.h') diff --git a/src/net/tmwa/npchandler.h b/src/net/tmwa/npchandler.h index b6483772d..218d49777 100644 --- a/src/net/tmwa/npchandler.h +++ b/src/net/tmwa/npchandler.h @@ -35,64 +35,64 @@ class NpcHandler final : public Ea::NpcHandler A_DELETE_COPY(NpcHandler) - void talk(const BeingId npcId) const override final; + void talk(const BeingId npcId) const final; - void nextDialog(const BeingId npcId) const override final; + void nextDialog(const BeingId npcId) const final; - void closeDialog(const BeingId npcId) override final; + void closeDialog(const BeingId npcId) final; void listInput(const BeingId npcId, - const unsigned char value) const override final; + const unsigned char value) const final; void integerInput(const BeingId npcId, - const int value) const override final; + const int value) const final; void stringInput(const BeingId npcId, - const std::string &value) const override final; + const std::string &value) const final; - void buy(const BeingId beingId) const override final; + void buy(const BeingId beingId) const final; - void sell(const BeingId beingId) const override final; + void sell(const BeingId beingId) const final; void buyItem(const BeingId beingId, const int itemId, const ItemColor color, - const int amount) const override final; + const int amount) const final; - void buyItems(std::vector &items) const override final + void buyItems(std::vector &items) const final A_CONST; void sellItem(const BeingId beingId, const int itemId, - const int amount) const override final; + const int amount) const final; - void sellItems(std::vector &items) const override final + void sellItems(std::vector &items) const final A_CONST; - void completeProgressBar() const override final A_CONST; + void completeProgressBar() const final A_CONST; BeingId getNpc(Net::MessageIn &msg, - const NpcActionT action) override final; + const NpcActionT action) final; void produceMix(const int nameId, const int materialId1, const int materialId2, - const int materialId3) const override final A_CONST; + const int materialId3) const final A_CONST; #ifdef EATHENA_SUPPORT void cooking(const CookingTypeT type, - const int nameId) const override final A_CONST; + const int nameId) const final A_CONST; #endif - void repair(const int index) const override final A_CONST; + void repair(const int index) const final A_CONST; - void refine(const int index) const override final A_CONST; + void refine(const int index) const final A_CONST; - void identify(const int index) const override final A_CONST; + void identify(const int index) const final A_CONST; - void selectArrow(const int nameId) const override final A_CONST; + void selectArrow(const int nameId) const final A_CONST; - void selectAutoSpell(const int skillId) const override final A_CONST; + void selectAutoSpell(const int skillId) const final A_CONST; }; } // namespace TmwAthena -- cgit v1.2.3-60-g2f50