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

@@ -163,7 +163,7 @@ bool StretchHeaderView::RestoreState(const QByteArray &state) {
ResizeSections();
}
emit StretchEnabledChanged(stretch_enabled_);
Q_EMIT StretchEnabledChanged(stretch_enabled_);
return true;
@@ -207,7 +207,7 @@ void StretchHeaderView::SetStretchEnabled(const bool enabled) {
ResizeSections();
}
emit StretchEnabledChanged(enabled);
Q_EMIT StretchEnabledChanged(enabled);
}