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
KDE PIM Runtime
Commits
80ccd7aa
Commit
80ccd7aa
authored
Jul 30, 2020
by
Laurent Montel
😁
Browse files
const'ify
parent
49095054
Pipeline
#28847
failed with stage
in 31 minutes and 20 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
resources/mbox/mboxresource.cpp
View file @
80ccd7aa
...
...
@@ -69,10 +69,8 @@ MboxResource::MboxResource(const QString &id)
QDBusConnection
::
sessionBus
().
registerObject
(
QStringLiteral
(
"/Settings"
),
mSettings
,
QDBusConnection
::
ExportAdaptors
);
QStringList
mimeTypes
;
mimeTypes
<<
QStringLiteral
(
"message/rfc822"
);
const
QStringList
mimeTypes
{
QStringLiteral
(
"message/rfc822"
)};
setSupportedMimetypes
(
mimeTypes
,
QStringLiteral
(
"message-rfc822"
));
// Register the list of deleted items as an attribute of the collection.
AttributeFactory
::
registerAttribute
<
DeletedItemsAttribute
>
();
}
...
...
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