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
c6e8b237
Commit
c6e8b237
authored
Mar 21, 2011
by
dt
Browse files
Fixes double display of clean output
Task-Nr: QTCREATORBUG-4154 Reviewed-By: hunger
parent
d1041cc9
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/projectexplorer.cpp
View file @
c6e8b237
...
...
@@ -1748,25 +1748,25 @@ void ProjectExplorerPlugin::deploySession()
void
ProjectExplorerPlugin
::
cleanProjectOnly
()
{
queue
(
QList
<
Project
*>
()
<<
session
()
->
startupProject
(),
QStringList
()
<<
Constants
::
BUILDSTEPS_CLEAN
<<
Constants
::
BUILDSTEPS_CLEAN
);
QStringList
()
<<
Constants
::
BUILDSTEPS_CLEAN
);
}
void
ProjectExplorerPlugin
::
cleanProject
()
{
queue
(
d
->
m_session
->
projectOrder
(
session
()
->
startupProject
()),
QStringList
()
<<
Constants
::
BUILDSTEPS_CLEAN
<<
Constants
::
BUILDSTEPS_CLEAN
);
QStringList
()
<<
Constants
::
BUILDSTEPS_CLEAN
);
}
void
ProjectExplorerPlugin
::
cleanProjectContextMenu
()
{
queue
(
d
->
m_session
->
projectOrder
(
d
->
m_currentProject
),
QStringList
()
<<
Constants
::
BUILDSTEPS_CLEAN
<<
Constants
::
BUILDSTEPS_CLEAN
);
QStringList
()
<<
Constants
::
BUILDSTEPS_CLEAN
);
}
void
ProjectExplorerPlugin
::
cleanSession
()
{
queue
(
d
->
m_session
->
projectOrder
(),
QStringList
()
<<
Constants
::
BUILDSTEPS_CLEAN
<<
Constants
::
BUILDSTEPS_CLEAN
);
QStringList
()
<<
Constants
::
BUILDSTEPS_CLEAN
);
}
void
ProjectExplorerPlugin
::
runProject
()
...
...
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