forked from qt-creator/qt-creator
Debugger: Fix "No such slot" warning in watchers
Change-Id: Ia8994e1cb86a05571a3d41352ad5d46f0bdd351f Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
This commit is contained in:
committed by
Tobias Hunger
parent
4df436f61a
commit
c7717c204a
@@ -1066,7 +1066,8 @@ public:
|
||||
layout->addWidget(m_buttons);
|
||||
setLayout(layout);
|
||||
|
||||
connect(m_buttons, SIGNAL(accepted()), m_lineEdit, SLOT(onEditingFinished()));
|
||||
connect(m_buttons, &QDialogButtonBox::accepted,
|
||||
m_lineEdit, &Utils::FancyLineEdit::onEditingFinished);
|
||||
connect(m_buttons, &QDialogButtonBox::accepted, this, &QDialog::accept);
|
||||
connect(m_buttons, &QDialogButtonBox::rejected, this, &QDialog::reject);
|
||||
connect(m_hint, SIGNAL(linkActivated(QString)),
|
||||
|
||||
Reference in New Issue
Block a user