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/pethandler.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/pethandler.h')
-rw-r--r-- | src/net/tmwa/pethandler.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/net/tmwa/pethandler.h b/src/net/tmwa/pethandler.h index 6362151cd..b38ecb6d4 100644 --- a/src/net/tmwa/pethandler.h +++ b/src/net/tmwa/pethandler.h @@ -34,34 +34,34 @@ class PetHandler final : public Net::PetHandler A_DELETE_COPY(PetHandler) void move(const int petId, - const int x, const int y) const override final; + const int x, const int y) const final; void spawn(const Being *const being, const int petId, - const int x, const int y) const override final A_CONST; + const int x, const int y) const final A_CONST; void emote(const uint8_t emoteId, - const int petId) override final; + const int petId) final; - void catchPet(const Being *const being) const override final A_CONST; + void catchPet(const Being *const being) const final A_CONST; - void sendPetMessage(const int data) const override final A_CONST; + void sendPetMessage(const int data) const final A_CONST; - void setName(const std::string &name) const override final A_CONST; + void setName(const std::string &name) const final A_CONST; - void requestStatus() const override final A_CONST; + void requestStatus() const final A_CONST; - void feed() const override final A_CONST; + void feed() const final A_CONST; - void dropLoot() const override final A_CONST; + void dropLoot() const final A_CONST; - void returnToEgg() const override final A_CONST; + void returnToEgg() const final A_CONST; - void unequip() const override final A_CONST; + void unequip() const final A_CONST; - void setDirection(const unsigned char type) const override final; + void setDirection(const unsigned char type) const final; - void startAi(const bool start) const override final; + void startAi(const bool start) const final; protected: int mRandCounter; |