summaryrefslogtreecommitdiff
path: root/src/net/tmwa/npchandler.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/tmwa/npchandler.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/tmwa/npchandler.h')
-rw-r--r--src/net/tmwa/npchandler.h42
1 files changed, 21 insertions, 21 deletions
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<ShopItem*> &items) const override final
+ void buyItems(std::vector<ShopItem*> &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<ShopItem*> &items) const override final
+ void sellItems(std::vector<ShopItem*> &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