diff options
author | Lioncash <mathew1800@gmail.com> | 2018-08-06 12:58:46 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-08-06 13:27:08 -0400 |
commit | 00a68c5eea17db975446c499a6dbf84311441f04 (patch) | |
tree | 654297114f26b6da04f27b630a9465036044e226 /src/yuzu/configuration/configure_general.cpp | |
parent | 1ac45342ddf8a12052d88d669240e5522aaf6395 (diff) |
qt: Default destructors where applicable
Makes code consistent with our style of defaulting special member
functions where applicable.
Diffstat (limited to 'src/yuzu/configuration/configure_general.cpp')
-rw-r--r-- | src/yuzu/configuration/configure_general.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/configuration/configure_general.cpp b/src/yuzu/configuration/configure_general.cpp index cb7d3f8bf..04afc8724 100644 --- a/src/yuzu/configuration/configure_general.cpp +++ b/src/yuzu/configuration/configure_general.cpp @@ -24,7 +24,7 @@ ConfigureGeneral::ConfigureGeneral(QWidget* parent) ui->use_docked_mode->setEnabled(!Core::System::GetInstance().IsPoweredOn()); } -ConfigureGeneral::~ConfigureGeneral() {} +ConfigureGeneral::~ConfigureGeneral() = default; void ConfigureGeneral::setConfiguration() { ui->toggle_deepscan->setChecked(UISettings::values.gamedir_deepscan); |