yuzu: Eliminate variable shadowing

This commit is contained in:
Morph 2022-05-26 19:57:35 -04:00
parent 56114589a6
commit 911eae6283
10 changed files with 25 additions and 25 deletions

View file

@ -80,9 +80,9 @@ bool GameListSearchField::KeyReleaseEater::eventFilter(QObject* obj, QEvent* eve
return QObject::eventFilter(obj, event);
}
void GameListSearchField::setFilterResult(int visible, int total) {
this->visible = visible;
this->total = total;
void GameListSearchField::setFilterResult(int visible_, int total_) {
visible = visible_;
total = total_;
label_filter_result->setText(tr("%1 of %n result(s)", "", total).arg(visible));
}