diff options
author | Christian Kandeler <[email protected]> | 2015-11-25 16:28:16 +0100 |
---|---|---|
committer | Christian Kandeler <[email protected]> | 2015-12-09 14:53:17 +0000 |
commit | 00e6798211f8ee5d437d88d227e8cf3fbc51279b (patch) | |
tree | 0acb4d57b333771cab2034ab62b89b9371e06332 /src/plugins/debugger/debuggersourcepathmappingwidget.cpp | |
parent | c8c792538e3e62d9499b49de51284c0c22b4f134 (diff) |
Debugger: Use PathChooser::pathChanged() signal in some places.
Instead of PathChooser::rawPathChanged(), because the associated slots
use PathChooser::path() rather than PathChooser::rawPath().
Change-Id: Idcf0709583ccf285d07f45b2b3007951d918fb04
Reviewed-by: hjk <[email protected]>
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 22b12313b3e..a596e6b1e26 100644 --- a/src/plugins/debugger/debuggersourcepathmappingwidget.cpp +++ b/src/plugins/debugger/debuggersourcepathmappingwidget.cpp @@ -256,7 +256,7 @@ DebuggerSourcePathMappingWidget::DebuggerSourcePathMappingWidget(QWidget *parent m_targetChooser->setHistoryCompleter(QLatin1String("Debugger.MappingTarget.History")); connect(m_sourceLineEdit, &QLineEdit::textChanged, this, &DebuggerSourcePathMappingWidget::slotEditSourceFieldChanged); - connect(m_targetChooser, &PathChooser::rawPathChanged, + connect(m_targetChooser, &PathChooser::pathChanged, this, &DebuggerSourcePathMappingWidget::slotEditTargetFieldChanged); auto editLayout = new QFormLayout; const QString sourceToolTip = tr("<p>The source path contained in the " |