X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgraphics%2Fquartz%2Fquartzloader.h;h=2aa0588d18ef653aadfa8b2ffb82711e5566cde6;hb=43d31e73c4b97a37017757232c4ef1db355fee3a;hp=3e856a98fdeb37ce6685f84457fa245ad6e92b00;hpb=73eebea348ced3b684d356238858c00b72cf5361;p=libs%2Fgui.git diff --git a/source/graphics/quartz/quartzloader.h b/source/graphics/quartz/quartzloader.h index 3e856a9..2aa0588 100644 --- a/source/graphics/quartz/quartzloader.h +++ b/source/graphics/quartz/quartzloader.h @@ -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