summaryrefslogtreecommitdiffstats
path: root/src/plugins/imageformats/icns/qicnshandler_p.h
diff options
context:
space:
mode:
authorAlexander Volkov <a.volkov@rusbitech.ru>2016-12-01 14:46:54 +0300
committerAlexander Volkov <a.volkov@rusbitech.ru>2016-12-05 11:57:22 +0000
commit08949c5a5062154c21ca0b77a497566a9eea8612 (patch)
tree5f5388c8bf74137d1ad720839a5cd6b06a3c2f90 /src/plugins/imageformats/icns/qicnshandler_p.h
parent33c311cce864f28ccd9205d51656424bd6d39404 (diff)
Add missing override and remove redundant virtual
Change-Id: I12f79f8fecdd03e4e6d4ce76e49d3c2d91003676 Reviewed-by: Eirik Aavitsland <eirik.aavitsland@qt.io>
Diffstat (limited to 'src/plugins/imageformats/icns/qicnshandler_p.h')
-rw-r--r--src/plugins/imageformats/icns/qicnshandler_p.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/plugins/imageformats/icns/qicnshandler_p.h b/src/plugins/imageformats/icns/qicnshandler_p.h
index 2ac975b..84c7bf1 100644
--- a/src/plugins/imageformats/icns/qicnshandler_p.h
+++ b/src/plugins/imageformats/icns/qicnshandler_p.h
@@ -128,18 +128,18 @@ class QICNSHandler : public QImageIOHandler
public:
QICNSHandler();
- bool canRead() const;
- bool read(QImage *image);
- bool write(const QImage &image);
+ bool canRead() const override;
+ bool read(QImage *image) override;
+ bool write(const QImage &image) override;
- QByteArray name() const;
+ QByteArray name() const override;
- bool supportsOption(ImageOption option) const;
- QVariant option(ImageOption option) const;
+ bool supportsOption(ImageOption option) const override;
+ QVariant option(ImageOption option) const override;
- int imageCount() const;
- bool jumpToImage(int imageNumber);
- bool jumpToNextImage();
+ int imageCount() const override;
+ bool jumpToImage(int imageNumber) override;
+ bool jumpToNextImage() override;
static bool canRead(QIODevice *device);