]> git.tdb.fi Git - libs/gui.git/blobdiff - source/graphics/quartz/quartzloader.h
Use the override specifier where appropriate
[libs/gui.git] / source / graphics / quartz / quartzloader.h
index 3e856a98fdeb37ce6685f84457fa245ad6e92b00..2aa0588d18ef653aadfa8b2ffb82711e5566cde6 100644 (file)
@@ -15,15 +15,15 @@ private:
 
 public:
        QuartzLoader(IO::Seekable &);
-       virtual ~QuartzLoader();
+       ~QuartzLoader();
 
        /* Experimentally found value, works for png and jpeg at least.  8 bytes
        is not enough for Quartz to recognize png. */
        static unsigned get_signature_size() { return 12; }
        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