summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/breakhandler.cpp
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2022-07-19 23:23:34 +0200
committerJarek Kobus <jaroslaw.kobus@qt.io>2022-07-20 13:13:21 +0000
commit1b070bcb114982cb8390adc06d9ce953a212f146 (patch)
tree01acac0342f2d8a442278442de597c020ff9e387 /src/plugins/debugger/breakhandler.cpp
parent5b3927869c9df7faf6aa2f22754f62952e67386f (diff)
downloadqt-creator-1b070bcb114982cb8390adc06d9ce953a212f146.tar.gz
Drop Qt5: Debugger: Get rid of QOverload
Change-Id: Ic62a3173adeffdfa78a47849cf1ceaa4f59b8091 Reviewed-by: hjk <hjk@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Diffstat (limited to 'src/plugins/debugger/breakhandler.cpp')
-rw-r--r--src/plugins/debugger/breakhandler.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/plugins/debugger/breakhandler.cpp b/src/plugins/debugger/breakhandler.cpp
index 1b95ae1eb9..6912c9d082 100644
--- a/src/plugins/debugger/breakhandler.cpp
+++ b/src/plugins/debugger/breakhandler.cpp
@@ -542,8 +542,7 @@ BreakpointDialog::BreakpointDialog(unsigned int enabledParts, QWidget *parent)
verticalLayout->addWidget(m_buttonBox);
verticalLayout->setStretchFactor(groupBoxAdvanced, 10);
- connect(m_comboBoxType, QOverload<int>::of(&QComboBox::activated),
- this, &BreakpointDialog::typeChanged);
+ connect(m_comboBoxType, &QComboBox::activated, this, &BreakpointDialog::typeChanged);
connect(m_buttonBox, &QDialogButtonBox::accepted, this, &QDialog::accept);
connect(m_buttonBox, &QDialogButtonBox::rejected, this, &QDialog::reject);
}