Replace emit with Q_EMIT

This commit is contained in:
Jonas Kvinge
2024-08-25 01:06:30 +02:00
parent cb0db8750f
commit 8da616491d
158 changed files with 891 additions and 891 deletions

View File

@@ -221,7 +221,7 @@ void SettingsDialog::accept() {
for (const PageData &page : pages) {
page.page_->Accept();
}
emit ReloadSettings();
Q_EMIT ReloadSettings();
SaveGeometry();
@@ -324,7 +324,7 @@ void SettingsDialog::Save() {
for (const PageData &page : pages) {
page.page_->Apply();
}
emit ReloadSettings();
Q_EMIT ReloadSettings();
}
@@ -337,7 +337,7 @@ void SettingsDialog::DialogButtonClicked(QAbstractButton *button) {
for (const PageData &page : pages) {
page.page_->Apply();
}
emit ReloadSettings();
Q_EMIT ReloadSettings();
}
}