Replace signals with Q_SIGNALS

This commit is contained in:
Jonas Kvinge
2024-08-11 23:23:12 +02:00
parent 9666feca37
commit 358da72ffe
136 changed files with 141 additions and 141 deletions

View File

@@ -102,7 +102,7 @@ class PlayerInterface : public QObject {
virtual void PlayHelper() = 0;
virtual void ShowOSD() = 0;
signals:
Q_SIGNALS:
void Playing();
void Paused();
// Emitted only when playback is manually resumed
@@ -190,7 +190,7 @@ class Player : public PlayerInterface {
void HandleAuthentication();
signals:
Q_SIGNALS:
void EngineChanged(const EngineBase::Type Type);
private slots: