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
+6 -6
View File
@@ -44,19 +44,19 @@ namespace glabels
protected:
Text( QChar delimiter, bool line1HasKeys );
Text( const Text* merge );
virtual ~Text();
~Text() override;
/////////////////////////////////
// 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;
/////////////////////////////////