Add missing names for parameter variables

This commit is contained in:
Jonas Kvinge
2024-09-28 12:32:12 +02:00
parent f2e28d18bc
commit 3cb0f60900
73 changed files with 365 additions and 164 deletions

View File

@@ -732,15 +732,18 @@ void StreamingSearchView::SetGroupBy(const CollectionModel::Grouping g) {
}
void StreamingSearchView::SearchArtistsClicked(const bool) {
void StreamingSearchView::SearchArtistsClicked(const bool checked) {
Q_UNUSED(checked)
SetSearchType(StreamingSearchView::SearchType::Artists);
}
void StreamingSearchView::SearchAlbumsClicked(const bool) {
void StreamingSearchView::SearchAlbumsClicked(const bool checked) {
Q_UNUSED(checked)
SetSearchType(StreamingSearchView::SearchType::Albums);
}
void StreamingSearchView::SearchSongsClicked(const bool) {
void StreamingSearchView::SearchSongsClicked(const bool checked) {
Q_UNUSED(checked)
SetSearchType(StreamingSearchView::SearchType::Songs);
}

View File

@@ -165,9 +165,9 @@ class StreamingSearchView : public QWidget {
void SearchForThis();
void OpenSettingsDialog();
void SearchArtistsClicked(const bool);
void SearchAlbumsClicked(const bool);
void SearchSongsClicked(const bool);
void SearchArtistsClicked(const bool checked);
void SearchAlbumsClicked(const bool checked);
void SearchSongsClicked(const bool checked);
void GroupByClicked(QAction *action);
void SetGroupBy(const CollectionModel::Grouping g);