Fix parameter name mispatches
This commit is contained in:
@@ -80,7 +80,7 @@ class CollectionFilterWidget : public QWidget {
|
||||
QString group_by(const int number);
|
||||
|
||||
public slots:
|
||||
void SetQueryMode(QueryOptions::QueryMode view);
|
||||
void SetQueryMode(QueryOptions::QueryMode query_mode);
|
||||
void FocusOnFilter(QKeyEvent *e);
|
||||
|
||||
signals:
|
||||
|
||||
@@ -171,7 +171,7 @@ class CollectionModel : public SimpleTreeModel<CollectionItem> {
|
||||
static QString PrettyAlbumDisc(const QString &album, const int disc);
|
||||
static QString PrettyYearAlbumDisc(const int year, const QString &album, const int disc);
|
||||
static QString SortText(QString text);
|
||||
static QString SortTextForNumber(const int year);
|
||||
static QString SortTextForNumber(const int number);
|
||||
static QString SortTextForArtist(QString artist);
|
||||
static QString SortTextForSong(const Song &song);
|
||||
static QString SortTextForYear(const int year);
|
||||
@@ -200,7 +200,7 @@ class CollectionModel : public SimpleTreeModel<CollectionItem> {
|
||||
|
||||
protected:
|
||||
void LazyPopulate(CollectionItem *item) { LazyPopulate(item, true); }
|
||||
void LazyPopulate(CollectionItem *item, const bool signal);
|
||||
void LazyPopulate(CollectionItem *parent, const bool signal);
|
||||
|
||||
private slots:
|
||||
// From CollectionBackend
|
||||
|
||||
@@ -150,7 +150,7 @@ class CollectionWatcher : public QObject {
|
||||
|
||||
private slots:
|
||||
void Exit();
|
||||
void DirectoryChanged(const QString &path);
|
||||
void DirectoryChanged(const QString &subdir);
|
||||
void IncrementalScanNow();
|
||||
void FullScanNow();
|
||||
void RescanTracksNow();
|
||||
|
||||
Reference in New Issue
Block a user