diff options
| author | 2018-10-25 16:45:13 -0400 | |
|---|---|---|
| committer | 2018-10-25 16:45:13 -0400 | |
| commit | 2347e1b8c530fb1cf88e61c40b2369746d4636a8 (patch) | |
| tree | dcc435d8435bd44bd3ec7fc7f6faa017218e9e35 /src | |
| parent | configure_system: Make public slots private (diff) | |
| download | yuzu-2347e1b8c530fb1cf88e61c40b2369746d4636a8.tar.gz yuzu-2347e1b8c530fb1cf88e61c40b2369746d4636a8.tar.xz yuzu-2347e1b8c530fb1cf88e61c40b2369746d4636a8.zip | |
configure_system: Add missing override specifier on the destructor
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/configuration/configure_system.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/configuration/configure_system.h b/src/yuzu/configuration/configure_system.h index a30ab8499..ea724e317 100644 --- a/src/yuzu/configuration/configure_system.h +++ b/src/yuzu/configuration/configure_system.h | |||
| @@ -29,7 +29,7 @@ class ConfigureSystem : public QWidget { | |||
| 29 | 29 | ||
| 30 | public: | 30 | public: |
| 31 | explicit ConfigureSystem(QWidget* parent = nullptr); | 31 | explicit ConfigureSystem(QWidget* parent = nullptr); |
| 32 | ~ConfigureSystem(); | 32 | ~ConfigureSystem() override; |
| 33 | 33 | ||
| 34 | void applyConfiguration(); | 34 | void applyConfiguration(); |
| 35 | void setConfiguration(); | 35 | void setConfiguration(); |