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

@@ -1494,10 +1494,10 @@ void EditTagDialog::SongSaveTagsComplete(TagReaderReply *reply, const QString &f
}
else {
if (error.isEmpty()) {
emit Error(tr("Could not write metadata to %1").arg(filename));
Q_EMIT Error(tr("Could not write metadata to %1").arg(filename));
}
else {
emit Error(tr("Could not write metadata to %1: %2").arg(filename, error));
Q_EMIT Error(tr("Could not write metadata to %1: %2").arg(filename, error));
}
}