Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
7752a95e
Commit
7752a95e
authored
Apr 14, 2011
by
Tobias Hunger
Browse files
GCC: Move ABI in front of debugger again
In toolchain configuration widget: Move abi in front of debugger again
parent
61700c16
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/gcctoolchain.cpp
View file @
7752a95e
...
...
@@ -570,12 +570,12 @@ Internal::GccToolChainConfigWidget::GccToolChainConfigWidget(GccToolChain *tc) :
m_compilerPath
->
setCommandVersionArguments
(
gnuVersionArgs
);
connect
(
m_compilerPath
,
SIGNAL
(
changed
(
QString
)),
this
,
SLOT
(
handlePathChange
()));
layout
->
addRow
(
tr
(
"&Compiler path:"
),
m_compilerPath
);
layout
->
addRow
(
tr
(
"&ABI:"
),
m_abiComboBox
);
addDebuggerCommandControls
(
layout
,
gnuVersionArgs
);
addErrorLabel
(
layout
);
populateAbiList
(
tc
->
supportedAbis
());
layout
->
addRow
(
tr
(
"&ABI:"
),
m_abiComboBox
);
connect
(
m_abiComboBox
,
SIGNAL
(
currentIndexChanged
(
int
)),
this
,
SLOT
(
handleAbiChange
()));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment