From fae79800c82d6fbf3aa9120e1bedc308211e62fe Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Sun, 2 Dec 2018 14:00:53 +0100 Subject: [PATCH] Fix spelling --- src/core/player.h | 2 +- src/deezer/deezerservice.cpp | 2 +- src/tidal/tidalservice.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/player.h b/src/core/player.h index c645334e8..07e6078c1 100644 --- a/src/core/player.h +++ b/src/core/player.h @@ -113,7 +113,7 @@ class PlayerInterface : public QObject { void SongChangeRequestProcessed(const QUrl &url, bool valid); // 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(); diff --git a/src/deezer/deezerservice.cpp b/src/deezer/deezerservice.cpp index 0dc2810ac..98a30c52d 100644 --- a/src/deezer/deezerservice.cpp +++ b/src/deezer/deezerservice.cpp @@ -595,7 +595,7 @@ void DeezerService::SearchFinished(QNetworkReply *reply, int id) { } 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 UpdateProgress(0); } diff --git a/src/tidal/tidalservice.cpp b/src/tidal/tidalservice.cpp index 85b92d389..de8271d5a 100644 --- a/src/tidal/tidalservice.cpp +++ b/src/tidal/tidalservice.cpp @@ -636,7 +636,7 @@ void TidalService::SearchFinished(QNetworkReply *reply, int id) { } 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 UpdateProgress(0); }