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
PIM Messagelib
Commits
5dabe045
Commit
5dabe045
authored
Jun 21, 2020
by
Laurent Montel
Browse files
Port foreach
parent
c48f13ad
Pipeline
#24584
passed with stage
in 57 minutes and 10 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
messagecomposer/src/composer/composerviewbase.cpp
View file @
5dabe045
...
...
@@ -668,7 +668,8 @@ QVector< MessageComposer::Composer * > ComposerViewBase::generateCryptoMessages(
}
if
(
m_attachmentModel
)
{
foreach
(
const
MessageCore
::
AttachmentPart
::
Ptr
&
attachment
,
m_attachmentModel
->
attachments
())
{
const
auto
attachments
=
m_attachmentModel
->
attachments
();
for
(
const
MessageCore
::
AttachmentPart
::
Ptr
&
attachment
:
attachments
)
{
if
(
attachment
->
isSigned
())
{
signSomething
=
true
;
}
else
{
...
...
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