1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-08-23 12:36:34 -05:00

qt/configuration: Use deleteLater

This commit is contained in:
lat9nq
2023-07-21 23:25:22 -04:00
parent 17b9c1e171
commit 1d4f813c6a
6 changed files with 7 additions and 7 deletions

View File

@@ -49,7 +49,7 @@ void ConfigureAudio::Setup(const ConfigurationShared::Builder& builder) {
continue; continue;
} }
if (!widget->Valid()) { if (!widget->Valid()) {
delete widget; widget->deleteLater();
continue; continue;
} }

View File

@@ -54,7 +54,7 @@ void ConfigureCpu::Setup(const ConfigurationShared::Builder& builder) {
continue; continue;
} }
if (!widget->Valid()) { if (!widget->Valid()) {
delete widget; widget->deleteLater();
continue; continue;
} }

View File

@@ -48,7 +48,7 @@ void ConfigureGeneral::Setup(const ConfigurationShared::Builder& builder) {
continue; continue;
} }
if (!widget->Valid()) { if (!widget->Valid()) {
delete widget; widget->deleteLater();
continue; continue;
} }

View File

@@ -246,7 +246,7 @@ void ConfigureGraphics::Setup(const ConfigurationShared::Builder& builder) {
continue; continue;
} }
if (!widget->Valid()) { if (!widget->Valid()) {
delete widget; widget->deleteLater();
continue; continue;
} }

View File

@@ -42,7 +42,7 @@ void ConfigureGraphicsAdvanced::Setup(const ConfigurationShared::Builder& builde
continue; continue;
} }
if (!widget->Valid()) { if (!widget->Valid()) {
delete widget; widget->deleteLater();
continue; continue;
} }

View File

@@ -112,7 +112,7 @@ void ConfigureSystem::Setup(const ConfigurationShared::Builder& builder) {
continue; continue;
} }
if (!widget->Valid()) { if (!widget->Valid()) {
delete widget; widget->deleteLater();
continue; continue;
} }
@@ -132,7 +132,7 @@ void ConfigureSystem::Setup(const ConfigurationShared::Builder& builder) {
system_hold.emplace(setting->Id(), widget); system_hold.emplace(setting->Id(), widget);
break; break;
default: default:
delete widget; widget->deleteLater();
} }
} }
for (const auto& [label, widget] : core_hold) { for (const auto& [label, widget] : core_hold) {