ProjectExplorer: Compile fix

Change-Id: Ia820f95a54175b1bb15014fd828ac6e722c6e037
Reviewed-by: hjk <hjk@theqtcompany.com>
Reviewed-by: Daniel Teske <daniel.teske@theqtcompany.com>
This commit is contained in:
Nikolai Kosjar
2015-05-19 16:22:51 +02:00
committed by Orgad Shaneh
parent 25c63444af
commit 04a03106ce

View File

@@ -263,7 +263,7 @@ void ArgumentsAspect::addToMainConfigurationWidget(QWidget *parent, QFormLayout
m_chooser->setHistoryCompleter(m_key);
m_chooser->setText(m_arguments);
connect(m_chooser, &QLineEdit::textChanged, this, &ArgumentsAspect::setArguments);
connect(m_chooser.data(), &QLineEdit::textChanged, this, &ArgumentsAspect::setArguments);
layout->addRow(tr("Command line arguments:"), m_chooser);
}