Use C++11 keywords directly.

This commit is contained in:
Felix Geyer 2015-10-11 10:47:30 +02:00
parent dc7b6623a9
commit 6e45cf0dab
9 changed files with 28 additions and 28 deletions

View file

@ -31,8 +31,8 @@ public:
HashedBlockStream(QIODevice* baseDevice, qint32 blockSize);
~HashedBlockStream();
bool reset() Q_DECL_OVERRIDE;
void close() Q_DECL_OVERRIDE;
bool reset() override;
void close() override;
protected:
qint64 readData(char* data, qint64 maxSize) override;