Replace slots with Q_SLOTS

This commit is contained in:
Jonas Kvinge
2024-08-12 01:06:15 +02:00
parent f624b7a331
commit cbce9892d5
209 changed files with 277 additions and 277 deletions

View File

@@ -87,7 +87,7 @@ class SubsonicService : public StreamingService {
void CheckConfiguration();
void Scrobble(const QString &song_id, const bool submission, const QDateTime &time);
public slots:
public Q_SLOTS:
void ShowConfig() override;
void SendPing();
void SendPingWithCredentials(QUrl url, const QString &username, const QString &password, const SubsonicSettingsPage::AuthMethod auth_method, const bool redirect = false);
@@ -95,7 +95,7 @@ class SubsonicService : public StreamingService {
void DeleteSongs();
void ResetSongsRequest() override;
private slots:
private Q_SLOTS:
void HandlePingSSLErrors(const QList<QSslError> &ssl_errors);
void HandlePingReply(QNetworkReply *reply, const QUrl &url, const QString &username, const QString &password, const SubsonicSettingsPage::AuthMethod auth_method);
void SongsResultsReceived(const SongMap &songs, const QString &error);