Fix parameter name mispatches

This commit is contained in:
Jonas Kvinge
2020-06-14 18:58:24 +02:00
parent 2fbdb29ebc
commit 082c9097e4
76 changed files with 145 additions and 147 deletions

View File

@@ -58,7 +58,7 @@ class TidalRequest : public TidalBaseRequest {
void Process();
void NeedLogin() { need_login_ = true; }
void Search(const int search_id, const QString &search_text);
void Search(const int query_id, const QString &search_text);
signals:
void Login();

View File

@@ -68,7 +68,7 @@ class TidalService : public InternetService {
void ReloadSettings();
void Logout();
int Search(const QString &query, InternetSearchView::SearchType type);
int Search(const QString &text, InternetSearchView::SearchType type);
void CancelSearch();
int max_login_attempts() { return kLoginAttempts; }