Use Q_DECL_OVERRIDE where possible

REVIEW: 122542
This commit is contained in:
Kevin Funk
2015-02-13 13:31:27 +01:00
parent 6b72930cb2
commit ac2b63046f
10 changed files with 43 additions and 43 deletions

View File

@ -41,10 +41,10 @@ public:
{
}
virtual bool read(char c[], int n);
virtual Imf::Int64 tellg();
virtual void seekg(Imf::Int64 pos);
virtual void clear();
bool read(char c[], int n) Q_DECL_OVERRIDE;
Imf::Int64 tellg() Q_DECL_OVERRIDE;
void seekg(Imf::Int64 pos) Q_DECL_OVERRIDE;
void clear() Q_DECL_OVERRIDE;
private:
QIODevice *m_dev;