Skip to content
GitLab
Menu
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
b949cafc
Commit
b949cafc
authored
Apr 08, 2010
by
Friedemann Kleint
Browse files
Debugger/gdb: Cosmetics, no gcc on Windows, width.
parent
0a5ee61b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/gdbchooserwidget.cpp
View file @
b949cafc
...
...
@@ -65,7 +65,10 @@ Q_DECLARE_METATYPE(QList<int>)
static
QList
<
int
>
allGdbToolChains
()
{
QList
<
int
>
rc
;
rc
<<
ProjectExplorer
::
ToolChain
::
GCC
rc
#ifdef Q_OS_UNIX
<<
ProjectExplorer
::
ToolChain
::
GCC
#endif
#ifdef Q_OS_WIN
<<
ProjectExplorer
::
ToolChain
::
MinGW
<<
ProjectExplorer
::
ToolChain
::
WINSCW
...
...
@@ -335,7 +338,6 @@ void GdbChooserWidget::slotAdd()
}
// Add binary + toolchain to model
m_model
->
append
(
path
,
binaryDialog
.
toolChains
());
m_treeView
->
expandAll
();
}
void
GdbChooserWidget
::
slotRemove
()
...
...
@@ -389,7 +391,8 @@ GdbChooserWidget::BinaryToolChainMap GdbChooserWidget::gdbBinaries() const
void
GdbChooserWidget
::
setGdbBinaries
(
const
BinaryToolChainMap
&
m
)
{
m_model
->
setGdbBinaries
(
m
);
m_treeView
->
expandAll
();
for
(
int
c
=
0
;
c
<
ColumnCount
;
c
++
)
m_treeView
->
resizeColumnToContents
(
c
);
}
// -------------- ToolChainSelectorWidget
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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