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
PIM Messagelib
Commits
6a30c582
Commit
6a30c582
authored
Aug 04, 2021
by
Laurent Montel
😁
Browse files
const'ify
parent
029ab3ab
Pipeline
#73303
passed with stage
in 41 minutes and 50 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
messagecomposer/src/composer/composerviewbase.cpp
View file @
6a30c582
...
...
@@ -1203,8 +1203,7 @@ void ComposerViewBase::cleanupAutoSave()
QDir
autoSaveDir
(
QStandardPaths
::
writableLocation
(
QStandardPaths
::
GenericDataLocation
)
+
QLatin1String
(
"/kmail2/autosave"
));
// Filter out only this composer window's autosave files
QStringList
autoSaveFilter
;
autoSaveFilter
<<
m_autoSaveUUID
+
QLatin1String
(
"*"
);
const
QStringList
autoSaveFilter
{
m_autoSaveUUID
+
QLatin1String
(
"*"
)};
autoSaveDir
.
setNameFilters
(
autoSaveFilter
);
// Return the files to be removed
...
...
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