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
Akonadi Mime
Commits
bdb8788a
Commit
bdb8788a
authored
Feb 04, 2021
by
Laurent Montel
😁
Browse files
Use auto vs auto * where it's possible
parent
5a290f2d
Pipeline
#49683
skipped
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/specialmailcollections.cpp
View file @
bdb8788a
...
...
@@ -148,7 +148,7 @@ void SpecialMailCollections::verifyI18nDefaultCollection(Type type)
if
(
collection
.
hasAttribute
<
Akonadi
::
EntityDisplayAttribute
>
())
{
if
(
collection
.
attribute
<
Akonadi
::
EntityDisplayAttribute
>
()
->
displayName
()
!=
defaultI18n
)
{
collection
.
attribute
<
Akonadi
::
EntityDisplayAttribute
>
()
->
setDisplayName
(
defaultI18n
);
auto
*
job
=
new
Akonadi
::
CollectionModifyJob
(
collection
,
this
);
auto
job
=
new
Akonadi
::
CollectionModifyJob
(
collection
,
this
);
connect
(
job
,
&
Akonadi
::
CollectionModifyJob
::
result
,
this
,
&
SpecialMailCollections
::
slotCollectionModified
);
}
}
...
...
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