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/being/compoundsprite.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/being/compoundsprite.h') diff --git a/src/being/compoundsprite.h b/src/being/compoundsprite.h index 71a77e87e..d6a5d67fc 100644 --- a/src/being/compoundsprite.h +++ b/src/being/compoundsprite.h @@ -44,11 +44,11 @@ class CompoundSprite notfinal : public Sprite virtual ~CompoundSprite(); - bool reset() override final; + bool reset() final; - bool play(const std::string &action) override final; + bool play(const std::string &action) final; - bool update(const int time) override final; + bool update(const int time) final; void drawSimple(Graphics *const graphics, const int posX, @@ -64,16 +64,16 @@ class CompoundSprite notfinal : public Sprite */ int getHeight() const override A_WARN_UNUSED; - const Image *getImage() const override final A_WARN_UNUSED; + const Image *getImage() const final A_WARN_UNUSED; bool setSpriteDirection(const SpriteDirection::Type direction) - override final; + final; int getNumberOfLayers() const A_WARN_UNUSED; - unsigned int getCurrentFrame() const override final A_WARN_UNUSED; + unsigned int getCurrentFrame() const final A_WARN_UNUSED; - unsigned int getFrameCount() const override final A_WARN_UNUSED; + unsigned int getFrameCount() const final A_WARN_UNUSED; void addSprite(Sprite *const sprite); @@ -95,7 +95,7 @@ class CompoundSprite notfinal : public Sprite void setAlpha(float alpha) override; - bool updateNumber(const unsigned num) override final; + bool updateNumber(const unsigned num) final; static void setEnableDelay(bool b) { mEnableDelay = b; } -- cgit v1.2.3-70-g09d2