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
cb95a18c
Commit
cb95a18c
authored
Sep 30, 2021
by
Sandro Knauß
🐝
Browse files
Fix small copy typo.
parent
a82ca524
Changes
1
Hide whitespace changes
Inline
Side-by-side
messagecomposer/src/draftstatus/draftstatus.cpp
View file @
cb95a18c
...
...
@@ -25,7 +25,7 @@ DraftEncryptionState::DraftEncryptionState(const KMime::Message::Ptr &msg)
void
DraftEncryptionState
::
setState
(
bool
encrypt
)
{
auto
hdr
=
new
KMime
::
Headers
::
Generic
(
"X-KMail-EncryptActionEnabled"
);
hdr
->
fromUnicodeString
(
sign
?
QStringLiteral
(
"true"
)
:
QStringLiteral
(
"false"
),
"utf-8"
);
hdr
->
fromUnicodeString
(
encrypt
?
QStringLiteral
(
"true"
)
:
QStringLiteral
(
"false"
),
"utf-8"
);
mMsg
->
setHeader
(
hdr
);
}
...
...
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