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
f1abcaf7
Commit
f1abcaf7
authored
Mar 29, 2010
by
Tobias Hunger
Browse files
Small logic fix
parent
bc7e3f2c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/wizards/targetsetuppage.cpp
View file @
f1abcaf7
...
...
@@ -175,7 +175,7 @@ bool TargetSetupPage::hasSelection() const
QTreeWidgetItem
*
current
=
m_treeWidget
->
topLevelItem
(
i
);
for
(
int
j
=
0
;
j
<
current
->
childCount
();
++
j
)
{
QTreeWidgetItem
*
child
=
current
->
child
(
j
);
if
(
child
->
checkState
(
0
)
!
=
Qt
::
Checked
)
if
(
child
->
checkState
(
0
)
=
=
Qt
::
Checked
)
return
true
;
}
}
...
...
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