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
40b983a9
Commit
40b983a9
authored
Jun 11, 2010
by
kh1
Browse files
Fix missing check-boxes on initial startup.
Task-number: QTCREATORBUG-1621 Reviewed-by: ck
parent
5221e8ef
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/help/filtersettingspage.cpp
View file @
40b983a9
...
...
@@ -114,8 +114,10 @@ void FilterSettingsPage::updateFilterPage()
foreach
(
const
QString
&
attribute
,
attributes
)
new
QTreeWidgetItem
(
m_ui
.
attributeWidget
,
QStringList
(
attribute
));
if
(
m_filterMap
.
keys
().
count
())
if
(
m_filterMap
.
keys
().
isEmpty
())
{
m_ui
.
filterWidget
->
setCurrentRow
(
0
);
updateAttributes
(
m_ui
.
filterWidget
->
currentItem
());
}
}
void
FilterSettingsPage
::
updateAttributes
(
QListWidgetItem
*
item
)
...
...
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