mirror of
https://invent.kde.org/frameworks/kimageformats.git
synced 2025-07-18 03:54:18 -04:00
Use Q_DECL_OVERRIDE where possible
REVIEW: 122542
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user