]> git.tdb.fi Git - libs/gui.git/blobdiff - source/graphics/png/pngloader.h
Use the override specifier where appropriate
[libs/gui.git] / source / graphics / png / pngloader.h
index 7c9390f23f79c4222972f211eeb87d1ad4561bd7..8023b019f7f17dfbbf9944aa165d50f312b73f37 100644 (file)
@@ -15,13 +15,13 @@ private:
 
 public:
        PngLoader(IO::Base &, unsigned = 0);
-       virtual ~PngLoader();
+       ~PngLoader();
 
        static unsigned get_signature_size() { return 8; }
        static bool detect(const std::string &);
 
-       virtual void load_headers_(Image::Data &);
-       virtual void load_pixels_(Image::Data &);
+       void load_headers_(Image::Data &) override;
+       void load_pixels_(Image::Data &) override;
 };
 
 } // namespace Graphics