Add missing names for parameter variables
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user