summaryrefslogtreecommitdiffstats
path: root/src/plugins/imageformats/dds/qddshandler.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/dds/qddshandler.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/dds/qddshandler.h')
-rw-r--r--src/plugins/imageformats/dds/qddshandler.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/plugins/imageformats/dds/qddshandler.h b/src/plugins/imageformats/dds/qddshandler.h
index ad383e8..665bd16 100644
--- a/src/plugins/imageformats/dds/qddshandler.h
+++ b/src/plugins/imageformats/dds/qddshandler.h
@@ -53,18 +53,18 @@ class QDDSHandler : public QImageIOHandler
public:
QDDSHandler();
- QByteArray name() const;
+ QByteArray name() const override;
- 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;
- QVariant option(QImageIOHandler::ImageOption option) const;
- void setOption(ImageOption option, const QVariant &value);
- bool supportsOption(QImageIOHandler::ImageOption option) const;
+ QVariant option(QImageIOHandler::ImageOption option) const override;
+ void setOption(ImageOption option, const QVariant &value) override;
+ bool supportsOption(QImageIOHandler::ImageOption option) const override;
- int imageCount() const;
- bool jumpToImage(int imageNumber);
+ int imageCount() const override;
+ bool jumpToImage(int imageNumber) override;
static bool canRead(QIODevice *device);