Fix parameter name mismatch
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user