Drop Qt5: Utils: Get rid of QOverload

Change-Id: I864bfb18668fd325badd34003adf494c7924f86b
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
Jarek Kobus
2022-07-19 22:32:39 +02:00
parent d7b248baec
commit 74ea4dc07d
10 changed files with 19 additions and 32 deletions

View File

@@ -72,8 +72,7 @@ SettingsSelector::SettingsSelector(QWidget *parent) :
this, &SettingsSelector::removeButtonClicked);
connect(m_renameButton, &QAbstractButton::clicked,
this, &SettingsSelector::renameButtonClicked);
connect(m_configurationCombo,
QOverload<int>::of(&QComboBox::currentIndexChanged),
connect(m_configurationCombo, &QComboBox::currentIndexChanged,
this, &SettingsSelector::currentChanged);
}