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
KMail Account Wizard
Commits
c98f1813
Commit
c98f1813
authored
Aug 26, 2019
by
Laurent Montel
😁
Browse files
Use QLatin1String overload for QString::operator ==/!=
parent
59d135b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/ispdb/ispdb.cpp
View file @
c98f1813
...
...
@@ -274,8 +274,8 @@ identity Ispdb::createIdentity(const QDomElement &n)
identity
i
;
//type="kolab" version="1.0" is the only identity that is defined
if
(
n
.
attribute
(
QStringLiteral
(
"type"
))
!=
QString
Literal
(
"kolab"
)
||
n
.
attribute
(
QStringLiteral
(
"version"
))
!=
QString
Literal
(
"1.0"
))
{
if
(
n
.
attribute
(
QStringLiteral
(
"type"
))
!=
Q
Latin1
String
(
"kolab"
)
||
n
.
attribute
(
QStringLiteral
(
"version"
))
!=
Q
Latin1
String
(
"1.0"
))
{
qCDebug
(
ACCOUNTWIZARD_LOG
)
<<
"unknown type of identity element."
;
}
...
...
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