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
PIM
KAddressBook
Commits
c94e61d6
Commit
c94e61d6
authored
May 11, 2021
by
Laurent Montel
😁
Browse files
Remove clazy warning
parent
a41e0660
Pipeline
#61535
passed with stage
in 5 minutes and 7 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/contactinfoproxymodel.cpp
View file @
c94e61d6
...
...
@@ -102,7 +102,8 @@ QString ContactInfoProxyModel::getInitials(const Akonadi::Item::Id groupItemId,
}
}
for
(
const
ContactCacheData
&
cacheContact
:
mGroupsCache
[
groupItemId
])
{
const
auto
groupCacheId
=
mGroupsCache
[
groupItemId
];
for
(
const
ContactCacheData
&
cacheContact
:
groupCacheId
)
{
const
QString
name
=
cacheContact
.
name
().
trimmed
();
if
(
!
name
.
isEmpty
())
{
initials
.
append
(
name
.
front
());
...
...
Write
Preview
Markdown
is supported
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