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
b1cf2c09
Commit
b1cf2c09
authored
Oct 06, 2009
by
dt
Browse files
Move startBuildQueue after potentially showing the compile output.
parent
5c9b3694
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/buildmanager.cpp
View file @
b1cf2c09
...
...
@@ -341,9 +341,9 @@ void BuildManager::buildProjects(const QList<Project *> &projects, const QList<Q
}
}
}
startBuildQueue
();
if
(
ProjectExplorerPlugin
::
instance
()
->
projectExplorerSettings
().
showCompilerOutput
)
m_outputWindow
->
popup
(
false
);
startBuildQueue
();
}
void
BuildManager
::
cleanProjects
(
const
QList
<
Project
*>
&
projects
,
const
QList
<
QString
>
&
configurations
)
...
...
@@ -359,9 +359,9 @@ void BuildManager::cleanProjects(const QList<Project *> &projects, const QList<Q
buildQueueAppend
(
bs
,
*
cit
);
}
}
startBuildQueue
();
if
(
ProjectExplorerPlugin
::
instance
()
->
projectExplorerSettings
().
showCompilerOutput
)
m_outputWindow
->
popup
(
false
);
startBuildQueue
();
}
void
BuildManager
::
buildProject
(
Project
*
p
,
const
QString
&
configuration
)
...
...
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