Fix parameter name mispatches
This commit is contained in:
@@ -104,7 +104,7 @@ class AlbumCoverFetcher : public QObject {
|
||||
|
||||
private slots:
|
||||
void SingleSearchFinished(const quint64, const CoverSearchResults results);
|
||||
void SingleCoverFetched(const quint64, const QUrl &cover_url, const QImage &cover);
|
||||
void SingleCoverFetched(const quint64, const QUrl &cover_url, const QImage &image);
|
||||
void StartRequests();
|
||||
|
||||
private:
|
||||
|
||||
@@ -892,7 +892,7 @@ void AlbumCoverManager::ExportCovers() {
|
||||
|
||||
}
|
||||
|
||||
void AlbumCoverManager::UpdateExportStatus(int exported, int skipped, int max) {
|
||||
void AlbumCoverManager::UpdateExportStatus(const int exported, const int skipped, const int max) {
|
||||
|
||||
progress_bar_->setValue(exported);
|
||||
|
||||
|
||||
@@ -156,7 +156,7 @@ class AlbumCoverManager : public QMainWindow {
|
||||
void LoadSelectedToPlaylist();
|
||||
|
||||
void UpdateCoverInList(QListWidgetItem *item, const QUrl &cover);
|
||||
void UpdateExportStatus(int exported, int bad, int count);
|
||||
void UpdateExportStatus(const int exported, const int skipped, const int max);
|
||||
|
||||
private:
|
||||
Ui_CoverManager *ui_;
|
||||
|
||||
Reference in New Issue
Block a user