Fix parameter name mismatch

This commit is contained in:
Jonas Kvinge
2021-06-22 13:56:27 +02:00
parent 584f5e5935
commit 6bf3c34fe5
7 changed files with 9 additions and 9 deletions

View File

@@ -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);
}