searchfield_mac: Replace emit with Q_EMIT

This commit is contained in:
Jonas Kvinge 2024-08-25 06:23:20 +02:00
parent 854847ca8a
commit 4ea57d1181

View File

@ -47,7 +47,7 @@ class SearchFieldPrivate : public QObject {
void textDidChange(const QString &text) {
if (qSearchField) {
emit qSearchField->textChanged(text);
Q_EMIT qSearchField->textChanged(text);
}
}