qt: Default destructors where applicable

Makes code consistent with our style of defaulting special member
functions where applicable.
This commit is contained in:
Lioncash
2018-08-06 12:58:46 -04:00
parent 1ac45342dd
commit 00a68c5eea
9 changed files with 15 additions and 16 deletions

View File

@ -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);