diff options
author | Petr Mrázek <peterix@gmail.com> | 2021-04-08 22:28:55 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2021-04-08 22:28:55 +0200 |
commit | 8b926d29d7aef9c7bbcb25ec9bfbf0ad314a8d72 (patch) | |
tree | 07dea610e3967ae06999a34b3bd4a6ceec1c8c95 /application/pages/modplatform | |
parent | 4ac38991ad66326a7dfd79eedde02489534e9132 (diff) | |
download | PrismLauncher-8b926d29d7aef9c7bbcb25ec9bfbf0ad314a8d72.tar.gz PrismLauncher-8b926d29d7aef9c7bbcb25ec9bfbf0ad314a8d72.tar.bz2 PrismLauncher-8b926d29d7aef9c7bbcb25ec9bfbf0ad314a8d72.zip |
NOISSUE fix build
Diffstat (limited to 'application/pages/modplatform')
-rw-r--r-- | application/pages/modplatform/flame/FlamePage.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/application/pages/modplatform/flame/FlamePage.cpp b/application/pages/modplatform/flame/FlamePage.cpp index 2b7d9004..1fadc501 100644 --- a/application/pages/modplatform/flame/FlamePage.cpp +++ b/application/pages/modplatform/flame/FlamePage.cpp @@ -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); } @@ -173,4 +173,4 @@ void FlamePage::onVersionSelectionChanged(QString data) } selectedVersion = ui->versionSelectionBox->currentData().toString(); suggestCurrent(); -}
\ No newline at end of file +} |