diff options
author | hjk <hjk@qt.io> | 2022-06-29 17:21:30 +0200 |
---|---|---|
committer | hjk <hjk@qt.io> | 2022-07-01 10:07:24 +0000 |
commit | 7cc06b85d0a3fc33dc512147d7c80714b44d18ee (patch) | |
tree | 9a702999e4125b65e303493fdf9c191ec2f66a6c /src/plugins/debugger/debuggersourcepathmappingwidget.cpp | |
parent | 5a75da8d1accfec2c83b5a2d097b5ec217c4e9a6 (diff) | |
download | qt-creator-7cc06b85d0a3fc33dc512147d7c80714b44d18ee.tar.gz |
Replace more used of PathChooser::pathChanged by filePathChanged
Change-Id: I0f92be6fcfd0a5319ad9f5d3681266966e40705e
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/debugger/debuggersourcepathmappingwidget.cpp')
-rw-r--r-- | src/plugins/debugger/debuggersourcepathmappingwidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggersourcepathmappingwidget.cpp b/src/plugins/debugger/debuggersourcepathmappingwidget.cpp index 590816e412..c30c3cb9ec 100644 --- a/src/plugins/debugger/debuggersourcepathmappingwidget.cpp +++ b/src/plugins/debugger/debuggersourcepathmappingwidget.cpp @@ -296,7 +296,7 @@ DebuggerSourcePathMappingWidget::DebuggerSourcePathMappingWidget() : m_targetChooser->setHistoryCompleter("Debugger.MappingTarget.History"); connect(m_sourceLineEdit, &QLineEdit::textChanged, this, &DebuggerSourcePathMappingWidget::slotEditSourceFieldChanged); - connect(m_targetChooser, &PathChooser::pathChanged, + connect(m_targetChooser, &PathChooser::filePathChanged, this, &DebuggerSourcePathMappingWidget::slotEditTargetFieldChanged); auto editLayout = new QFormLayout; const QString sourceToolTip = tr("<p>The source path contained in the " |