GCC: Move ABI in front of debugger again

In toolchain configuration widget: Move abi in front of debugger again
This commit is contained in:
Tobias Hunger
2011-04-14 10:50:28 +02:00
parent 61700c16e1
commit 7752a95e15

View File

@@ -570,12 +570,12 @@ Internal::GccToolChainConfigWidget::GccToolChainConfigWidget(GccToolChain *tc) :
m_compilerPath->setCommandVersionArguments(gnuVersionArgs); m_compilerPath->setCommandVersionArguments(gnuVersionArgs);
connect(m_compilerPath, SIGNAL(changed(QString)), this, SLOT(handlePathChange())); connect(m_compilerPath, SIGNAL(changed(QString)), this, SLOT(handlePathChange()));
layout->addRow(tr("&Compiler path:"), m_compilerPath); layout->addRow(tr("&Compiler path:"), m_compilerPath);
layout->addRow(tr("&ABI:"), m_abiComboBox);
addDebuggerCommandControls(layout, gnuVersionArgs); addDebuggerCommandControls(layout, gnuVersionArgs);
addErrorLabel(layout); addErrorLabel(layout);
populateAbiList(tc->supportedAbis()); populateAbiList(tc->supportedAbis());
layout->addRow(tr("&ABI:"), m_abiComboBox);
connect(m_abiComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(handleAbiChange())); connect(m_abiComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(handleAbiChange()));