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
Tobias Hunger
qt-creator
Commits
10f94d67
Commit
10f94d67
authored
Oct 05, 2009
by
dt
Browse files
Hitting build would still crash for a qml project
parent
c9f13c0f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/projectexplorer.cpp
View file @
10f94d67
...
...
@@ -1423,8 +1423,13 @@ void ProjectExplorerPlugin::buildProjectOnly()
static
QStringList
configurations
(
const
QList
<
Project
*>
&
projects
)
{
QStringList
result
;
foreach
(
const
Project
*
pro
,
projects
)
result
<<
pro
->
activeBuildConfiguration
()
->
name
();
foreach
(
const
Project
*
pro
,
projects
)
{
if
(
BuildConfiguration
*
bc
=
pro
->
activeBuildConfiguration
())
{
result
<<
bc
->
name
();
}
else
{
result
<<
QString
::
null
;
}
}
return
result
;
}
...
...
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