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
+2 -2
View File
@@ -61,7 +61,7 @@ namespace glabels
/////////////////////////////////////
public:
MainWindow();
virtual ~MainWindow();
~MainWindow() override;
/////////////////////////////////////
@@ -77,7 +77,7 @@ namespace glabels
// Events
/////////////////////////////////////
protected:
void closeEvent( QCloseEvent *event );
void closeEvent( QCloseEvent *event ) override;
/////////////////////////////////////