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

@@ -152,7 +152,7 @@ bool EngineBase::Play(const QUrl &media_url, const QUrl &stream_url, const bool
void EngineBase::UpdateVolume(const uint volume) {
volume_ = volume;
emit VolumeChanged(volume);
Q_EMIT VolumeChanged(volume);
}
@@ -261,7 +261,7 @@ void EngineBase::EmitAboutToFinish() {
about_to_end_emitted_ = true;
emit TrackAboutToEnd();
Q_EMIT TrackAboutToEnd();
}