Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
KMime
Commits
745c25d3
Commit
745c25d3
authored
Dec 26, 2021
by
Laurent Montel
Browse files
Fix compile against qt6
parent
11b0f5e6
Pipeline
#114400
passed with stage
in 57 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/kmime_util.cpp
View file @
745c25d3
...
...
@@ -534,10 +534,10 @@ QString removeBidiControlChars(const QString &input)
const
int
LRE
=
0x202A
;
const
int
RLE
=
0x202B
;
QString
result
=
input
;
result
.
remove
(
LRO
);
result
.
remove
(
RLO
);
result
.
remove
(
LRE
);
result
.
remove
(
RLE
);
result
.
remove
(
QChar
(
LRO
)
)
;
result
.
remove
(
QChar
(
RLO
)
)
;
result
.
remove
(
QChar
(
LRE
)
)
;
result
.
remove
(
QChar
(
RLE
)
)
;
return
result
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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