forked from qt-creator/qt-creator
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 <hjk@theqtcompany.com>
This commit is contained in:
@@ -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 "
|
||||
|
||||
Reference in New Issue
Block a user