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

@@ -90,7 +90,7 @@ class UrlHandler : public QObject {
// Called by the Player when a song starts loading - gives the handler a chance to do something clever to get a playable track.
virtual LoadResult StartLoading(const QUrl &url) { return LoadResult(url); }
signals:
Q_SIGNALS:
void AsyncLoadComplete(const UrlHandler::LoadResult &result);
};