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
38607c49
Commit
38607c49
authored
Apr 12, 2010
by
ck
Browse files
Maemo: Display simulator information only for valid run configs.
Reviewed-by: kh1
parent
23ef4f9c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qt-maemo/maemorunconfigurationwidget.cpp
View file @
38607c49
...
...
@@ -143,7 +143,8 @@ void MaemoRunConfigurationWidget::deviceConfigurationChanged(const QString &name
void
MaemoRunConfigurationWidget
::
setSimInfoVisible
(
const
MaemoDeviceConfig
&
devConf
)
{
const
bool
isSimulator
=
devConf
.
type
==
MaemoDeviceConfig
::
Simulator
;
const
bool
isSimulator
=
devConf
.
isValid
()
&&
devConf
.
type
==
MaemoDeviceConfig
::
Simulator
;
m_simNameLabel
->
setVisible
(
isSimulator
);
m_simValueLabel
->
setVisible
(
isSimulator
);
}
...
...
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