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
53b14384
Commit
53b14384
authored
Aug 09, 2010
by
Tobias Hunger
Browse files
Fix Build-/DeployConfiguration mixup
parent
0d35f2f7
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qt-s60/s60devicerunconfiguration.cpp
View file @
53b14384
...
...
@@ -49,9 +49,9 @@
#include <utils/qtcassert.h>
#include <utils/pathchooser.h>
#include <projectexplorer/buildsteplist.h>
#include <projectexplorer/deployconfiguration.h>
#include <projectexplorer/projectexplorerconstants.h>
#include <projectexplorer/project.h>
#include <projectexplorer/buildconfiguration.h>
#include <debugger/debuggerengine.h>
#include <debugger/debuggerplugin.h>
...
...
@@ -412,9 +412,9 @@ QString S60DeviceRunConfiguration::localExecutableFileName() const
bool
S60DeviceRunConfiguration
::
runSmartInstaller
()
const
{
Build
Configuration
*
b
c
=
target
()
->
active
Build
Configuration
();
QTC_ASSERT
(
b
c
,
return
false
);
BuildStepList
*
bsl
=
b
c
->
stepList
(
ProjectExplorer
::
Constants
::
BUILDSTEPS_DEPLOY
);
Deploy
Configuration
*
d
c
=
target
()
->
active
Deploy
Configuration
();
QTC_ASSERT
(
d
c
,
return
false
);
BuildStepList
*
bsl
=
d
c
->
stepList
();
QTC_ASSERT
(
bsl
,
return
false
);
QList
<
BuildStep
*>
steps
=
bsl
->
steps
();
foreach
(
const
BuildStep
*
step
,
steps
)
{
...
...
Write
Preview
Supports
Markdown
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