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
0760b595
Commit
0760b595
authored
Apr 22, 2021
by
Laurent Montel
😁
Browse files
const'ify pointer
parent
bfd589b0
Pipeline
#59164
passed with stage
in 38 minutes and 50 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
mimetreeparser/src/job/qgpgmejobexecutor.cpp
View file @
0760b595
...
...
@@ -21,9 +21,9 @@ using namespace MimeTreeParser;
QGpgMEJobExecutor
::
QGpgMEJobExecutor
(
QObject
*
parent
)
:
QObject
(
parent
)
,
mEventLoop
(
new
QEventLoop
(
this
))
{
setObjectName
(
QStringLiteral
(
"KleoJobExecutor"
));
mEventLoop
=
new
QEventLoop
(
this
);
}
GpgME
::
VerificationResult
QGpgMEJobExecutor
::
exec
(
QGpgME
::
VerifyDetachedJob
*
job
,
const
QByteArray
&
signature
,
const
QByteArray
&
signedData
)
...
...
mimetreeparser/src/job/qgpgmejobexecutor.h
View file @
0760b595
...
...
@@ -50,7 +50,7 @@ private Q_SLOTS:
void
importResult
(
const
GpgME
::
ImportResult
&
result
);
private:
QEventLoop
*
mEventLoop
=
nullptr
;
QEventLoop
*
const
mEventLoop
;
GpgME
::
VerificationResult
mVerificationResult
;
GpgME
::
DecryptionResult
mDecryptResult
;
GpgME
::
ImportResult
mImportResult
;
...
...
mimetreeparser/src/messagepart.h
View file @
0760b595
...
...
@@ -156,7 +156,7 @@ public:
Q_REQUIRED_RESULT
QString
htmlContent
()
const
override
;
private:
bool
mOnlyOneMimePart
;
const
bool
mOnlyOneMimePart
;
};
/**
* @brief The MessagePartList class
...
...
@@ -213,7 +213,7 @@ private:
KMMsgSignatureState
mSignatureState
;
KMMsgEncryptionState
mEncryptionState
;
bool
mDecryptMessage
;
const
bool
mDecryptMessage
;
};
/**
* @brief The AttachmentMessagePart class
...
...
mimetreeparser/src/partnodebodypart.h
View file @
0760b595
...
...
@@ -43,11 +43,11 @@ public:
Interface
::
ObjectTreeSource
*
source
()
const
override
;
private:
KMime
::
Content
*
mTopLevelContent
=
nullptr
;
KMime
::
Content
*
mContent
=
nullptr
;
NodeHelper
*
mNodeHelper
=
nullptr
;
ObjectTreeParser
*
mObjectTreeParser
=
nullptr
;
ProcessResult
*
mProcessResult
=
nullptr
;
KMime
::
Content
*
const
mTopLevelContent
;
KMime
::
Content
*
const
mContent
;
NodeHelper
*
const
mNodeHelper
;
ObjectTreeParser
*
const
mObjectTreeParser
;
ProcessResult
*
const
mProcessResult
;
};
}
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