Fix spelling
This commit is contained in:
@@ -113,7 +113,7 @@ class PlayerInterface : public QObject {
|
|||||||
void SongChangeRequestProcessed(const QUrl &url, bool valid);
|
void SongChangeRequestProcessed(const QUrl &url, bool valid);
|
||||||
|
|
||||||
// The toggle parameter is true when user requests to toggle visibility for Pretty OSD
|
// The toggle parameter is true when user requests to toggle visibility for Pretty OSD
|
||||||
void ForceShowOSD(Song, bool toogle);
|
void ForceShowOSD(Song, bool toggle);
|
||||||
|
|
||||||
void Authenticated();
|
void Authenticated();
|
||||||
|
|
||||||
|
|||||||
@@ -595,7 +595,7 @@ void DeezerService::SearchFinished(QNetworkReply *reply, int id) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (albums_requested_ > 0) {
|
if (albums_requested_ > 0) {
|
||||||
emit UpdateStatus(QString("Retriving %1 album%2...").arg(albums_requested_).arg(albums_requested_ == 1 ? "" : "s"));
|
emit UpdateStatus(QString("Retrieving %1 album%2...").arg(albums_requested_).arg(albums_requested_ == 1 ? "" : "s"));
|
||||||
emit ProgressSetMaximum(albums_requested_);
|
emit ProgressSetMaximum(albums_requested_);
|
||||||
emit UpdateProgress(0);
|
emit UpdateProgress(0);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -636,7 +636,7 @@ void TidalService::SearchFinished(QNetworkReply *reply, int id) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (albums_requested_ > 0) {
|
if (albums_requested_ > 0) {
|
||||||
emit UpdateStatus(QString("Retriving %1 album%2...").arg(albums_requested_).arg(albums_requested_ == 1 ? "" : "s"));
|
emit UpdateStatus(QString("Retrieving %1 album%2...").arg(albums_requested_).arg(albums_requested_ == 1 ? "" : "s"));
|
||||||
emit ProgressSetMaximum(albums_requested_);
|
emit ProgressSetMaximum(albums_requested_);
|
||||||
emit UpdateProgress(0);
|
emit UpdateProgress(0);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user