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 Data Import Wizard
Commits
3c9dbc83
Commit
3c9dbc83
authored
May 13, 2021
by
Laurent Montel
😁
Browse files
Fix some clazy warning
parent
16af58a9
Pipeline
#61724
passed with stage
in 7 minutes and 15 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/evolutionv3/evolutionsettings.cpp
View file @
3c9dbc83
...
...
@@ -49,8 +49,8 @@ void EvolutionSettings::loadAccount(const QString &filename)
for
(
QDomElement
e
=
config
.
firstChildElement
();
!
e
.
isNull
();
e
=
e
.
nextSiblingElement
())
{
const
QString
tag
=
e
.
tagName
();
if
(
tag
==
QLatin1String
(
"entry"
))
{
if
(
e
.
hasAttribute
(
Q
Latin1
String
(
"name"
)))
{
const
QString
attr
=
e
.
attribute
(
Q
Latin1
String
(
"name"
));
if
(
e
.
hasAttribute
(
QString
Literal
(
"name"
)))
{
const
QString
attr
=
e
.
attribute
(
QString
Literal
(
"name"
));
if
(
attr
==
QLatin1String
(
"accounts"
))
{
readAccount
(
e
);
}
else
if
(
attr
==
QLatin1String
(
"signatures"
))
{
...
...
src/plugins/thunderbird/thunderbirdsettings.cpp
View file @
3c9dbc83
...
...
@@ -951,7 +951,7 @@ void ThunderbirdSettings::readIdentity(const QString &account)
newIdentity
->
setPgpAutoSign
(
signMail
);
}
const
QString
composeHtmlStr
(
identity
+
QStringLiteral
(
".compose_html"
));
//
const QString composeHtmlStr(identity + QStringLiteral(".compose_html"));
// TODO: implement it in kmail
newIdentity
->
setSignature
(
signature
);
...
...
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