Fix parameter name mismatch
This commit is contained in:
parent
584f5e5935
commit
6bf3c34fe5
@ -164,10 +164,10 @@ class CollectionBackend : public CollectionBackendInterface {
|
||||
AlbumList GetCompilationAlbums(const QueryOptions &opt = QueryOptions()) override;
|
||||
AlbumList GetAlbumsByArtist(const QString &artist, const QueryOptions &opt = QueryOptions()) override;
|
||||
|
||||
void UpdateManualAlbumArtAsync(const QString &album_artist, const QString &album, const QUrl &cover_url, const bool clear_art_automatic = false) override;
|
||||
void UpdateManualAlbumArtAsync(const QString &effective_albumartist, const QString &album, const QUrl &cover_url, const bool clear_art_automatic = false) override;
|
||||
void UpdateAutomaticAlbumArtAsync(const QString &effective_albumartist, const QString &album, const QUrl &cover_url) override;
|
||||
|
||||
Album GetAlbumArt(const QString &album_artist, const QString &album) override;
|
||||
Album GetAlbumArt(const QString &effective_albumartist, const QString &album) override;
|
||||
|
||||
Song GetSongById(const int id) override;
|
||||
SongList GetSongsById(const QList<int> &ids);
|
||||
|
@ -149,7 +149,7 @@ class MainWindow : public QMainWindow, public PlatformInterface {
|
||||
void ForceShowOSD(const Song &song, const bool toggle);
|
||||
|
||||
void PlaylistMenuHidden();
|
||||
void PlaylistRightClick(const QPoint global_pos, const QModelIndex &idx);
|
||||
void PlaylistRightClick(const QPoint global_pos, const QModelIndex &index);
|
||||
void PlaylistCurrentChanged(const QModelIndex ¤t);
|
||||
void PlaylistViewSelectionModelChanged();
|
||||
void PlaylistPlay();
|
||||
|
@ -64,7 +64,7 @@ class GPodDevice : public ConnectedDevice, public virtual MusicStorage {
|
||||
|
||||
bool GetSupportedFiletypes(QList<Song::FileType> *ret) override;
|
||||
|
||||
bool StartCopy(QList<Song::FileType> *supported_types) override;
|
||||
bool StartCopy(QList<Song::FileType> *supported_filetypes) override;
|
||||
bool CopyToStorage(const CopyJob &job) override;
|
||||
void FinishCopy(bool success) override;
|
||||
|
||||
|
@ -86,7 +86,7 @@ class InternetSearchView : public QWidget {
|
||||
|
||||
void Init(Application *app, InternetService *service);
|
||||
|
||||
void LazyLoadAlbumCover(const QModelIndex &idx);
|
||||
void LazyLoadAlbumCover(const QModelIndex &proxy_index);
|
||||
|
||||
protected:
|
||||
struct PendingState {
|
||||
|
@ -57,7 +57,7 @@ class QobuzRequest : public QobuzBaseRequest {
|
||||
void ReloadSettings();
|
||||
|
||||
void Process();
|
||||
void Search(const int search_id, const QString &search_text);
|
||||
void Search(const int query_id, const QString &search_text);
|
||||
|
||||
signals:
|
||||
void LoginSuccess();
|
||||
|
@ -72,7 +72,7 @@ class SmartPlaylistSearchTermWidget : public QWidget {
|
||||
|
||||
private slots:
|
||||
void FieldChanged(const int index);
|
||||
void OpChanged(const int index);
|
||||
void OpChanged(const int idx);
|
||||
void RelativeValueChanged();
|
||||
void Grab();
|
||||
|
||||
|
@ -288,8 +288,8 @@ QVariant SmartPlaylistsModel::data(const QModelIndex &idx, const int role) const
|
||||
|
||||
}
|
||||
|
||||
void SmartPlaylistsModel::LazyPopulate(SmartPlaylistsItem *parent, const bool signal) {
|
||||
Q_UNUSED(parent);
|
||||
void SmartPlaylistsModel::LazyPopulate(SmartPlaylistsItem *item, const bool signal) {
|
||||
Q_UNUSED(item);
|
||||
Q_UNUSED(signal);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user