Skip to content

Commit

Permalink
NOISSUE fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
peterix committed Apr 8, 2021
1 parent 4ac3899 commit 8b926d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/pages/modplatform/flame/FlamePage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ FlamePage::FlamePage(NewInstanceDialog* dialog, QWidget *parent)
ui->sortByBox->addItem(tr("Sort by author"));
ui->sortByBox->addItem(tr("Sort by total downloads"));

connect(ui->sortByBox, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &FlamePage::triggerSearch);
connect(ui->sortByBox, SIGNAL(currentIndexChanged(int)), this, SLOT(triggerSearch()));
connect(ui->packView->selectionModel(), &QItemSelectionModel::currentChanged, this, &FlamePage::onSelectionChanged);
connect(ui->versionSelectionBox, &QComboBox::currentTextChanged, this, &FlamePage::onVersionSelectionChanged);
}
Expand Down Expand Up @@ -173,4 +173,4 @@ void FlamePage::onVersionSelectionChanged(QString data)
}
selectedVersion = ui->versionSelectionBox->currentData().toString();
suggestCurrent();
}
}

0 comments on commit 8b926d2

Please sign in to comment.