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

@@ -83,7 +83,7 @@ class StreamingCollectionView : public AutoExpandingTreeView {
void SaveFocus();
void RestoreFocus();
signals:
Q_SIGNALS:
void GetSongs();
void TotalSongCountUpdated_();
void TotalArtistCountUpdated_();

View File

@@ -136,7 +136,7 @@ class StreamingSearchView : public QWidget {
bool FindCachedPixmap(const Result &result, QPixmap *pixmap) const;
int LoadAlbumCoverAsync(const Result &result);
signals:
Q_SIGNALS:
void AddToPlaylist(QMimeData*);
void AddArtistsSignal(const SongList &songs);
void AddAlbumsSignal(const SongList &songs);

View File

@@ -82,7 +82,7 @@ class StreamingService : public QObject {
virtual void ResetAlbumsRequest() {}
virtual void ResetSongsRequest() {}
signals:
Q_SIGNALS:
void ExitFinished();
void RequestLogin();
void RequestLogout();

View File

@@ -55,7 +55,7 @@ class StreamingServices : public QObject {
void ReloadSettings();
void Exit();
signals:
Q_SIGNALS:
void ExitFinished();
private slots: