forked from qt-creator/qt-creator
Debugger: Add 'Run in terminal' to Start External dialog.
This commit is contained in:
@@ -594,6 +594,16 @@ bool StartExternalDialog::breakAtMain() const
|
||||
return m_ui->checkBoxBreakAtMain->isChecked();
|
||||
}
|
||||
|
||||
bool StartExternalDialog::runInTerminal() const
|
||||
{
|
||||
return m_ui->checkBoxRunInTerminal->isChecked();
|
||||
}
|
||||
|
||||
void StartExternalDialog::setRunInTerminal(bool v)
|
||||
{
|
||||
m_ui->checkBoxRunInTerminal->setChecked(v);
|
||||
}
|
||||
|
||||
ProjectExplorer::Abi StartExternalDialog::abi() const
|
||||
{
|
||||
return m_ui->toolChainComboBox->abi();
|
||||
|
||||
Reference in New Issue
Block a user