diff options
author | Lioncash <mathew1800@gmail.com> | 2018-08-06 13:12:32 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-08-06 13:29:14 -0400 |
commit | 7846295a8f5c74cecdebc467e902406fe7179547 (patch) | |
tree | 4d4ede32087cb28ec94a506949b72d3f606cf75c /src/yuzu/about_dialog.h | |
parent | 00a68c5eea17db975446c499a6dbf84311441f04 (diff) |
qt: Add missing override specifiers where applicable
Diffstat (limited to 'src/yuzu/about_dialog.h')
-rw-r--r-- | src/yuzu/about_dialog.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/about_dialog.h b/src/yuzu/about_dialog.h index 2eb6e28f5..18e8c11a7 100644 --- a/src/yuzu/about_dialog.h +++ b/src/yuzu/about_dialog.h @@ -16,7 +16,7 @@ class AboutDialog : public QDialog { public: explicit AboutDialog(QWidget* parent); - ~AboutDialog(); + ~AboutDialog() override; private: std::unique_ptr<Ui::AboutDialog> ui; |