Use override specifier where apropriate.

- fixed using clang-tidy's modernize-use-override check.
This commit is contained in:
Jim Evins
2017-03-21 23:36:39 -04:00
parent 9f9ba345cf
commit e09936233a
38 changed files with 202 additions and 202 deletions
+7 -7
View File
@@ -42,13 +42,13 @@ namespace glabels
public:
None();
None( const None* merge );
virtual ~None();
~None() override;
/////////////////////////////////
// Object duplication
/////////////////////////////////
None* clone() const;
None* clone() const override;
/////////////////////////////////
@@ -63,12 +63,12 @@ namespace glabels
// Implementation of virtual methods
/////////////////////////////////
public:
QStringList keys() const;
QString primaryKey() const;
QStringList keys() const override;
QString primaryKey() const override;
protected:
void open();
void close();
Record* readNextRecord();
void open() override;
void close() override;
Record* readNextRecord() override;
};