Add missing const

This commit is contained in:
Jonas Kvinge
2024-07-02 18:33:15 +02:00
parent e1b4585dc7
commit 6200fed224
7 changed files with 53 additions and 53 deletions

View File

@@ -49,13 +49,13 @@ class TidalStreamURLRequest : public TidalBaseRequest {
void Process();
void Cancel();
bool oauth() { return service_->oauth(); }
TidalSettingsPage::StreamUrlMethod stream_url_method() { return service_->stream_url_method(); }
QUrl media_url() { return media_url_; }
int song_id() { return song_id_; }
bool oauth() const { return service_->oauth(); }
TidalSettingsPage::StreamUrlMethod stream_url_method() const { return service_->stream_url_method(); }
QUrl media_url() const { return media_url_; }
int song_id() const { return song_id_; }
void set_need_login() override { need_login_ = true; }
bool need_login() { return need_login_; }
bool need_login() const { return need_login_; }
signals:
void TryLogin();