Replace slots with Q_SLOTS
This commit is contained in:
@@ -46,14 +46,14 @@ class TagFetcher : public QObject {
|
||||
|
||||
void StartFetch(const SongList &songs);
|
||||
|
||||
public slots:
|
||||
public Q_SLOTS:
|
||||
void Cancel();
|
||||
|
||||
Q_SIGNALS:
|
||||
void Progress(const Song &original_song, const QString &stage);
|
||||
void ResultAvailable(const Song &original_song, const SongList &songs_guessed, const QString &error = QString());
|
||||
|
||||
private slots:
|
||||
private Q_SLOTS:
|
||||
void FingerprintFound(const int index);
|
||||
void PuidsFound(const int index, const QStringList &puid_list, const QString &error = QString());
|
||||
void TagsFetched(const int index, const MusicBrainzClient::ResultList &results, const QString &error = QString());
|
||||
|
||||
Reference in New Issue
Block a user