summaryrefslogtreecommitdiffstats
path: root/kmail/partmetadata.h
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/partmetadata.h')
-rw-r--r--kmail/partmetadata.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/kmail/partmetadata.h b/kmail/partmetadata.h
index 1bc93d81..ee6f51d3 100644
--- a/kmail/partmetadata.h
+++ b/kmail/partmetadata.h
@@ -18,6 +18,7 @@
#define _KMAIL_PARTMETADATA_H_
#include <gpgmepp/verificationresult.h>
+#include <gpgmepp/context.h>
#include <kpgp.h>
#include <tqstring.h>
@@ -34,6 +35,7 @@ namespace KMail {
isGoodSignature( false ),
isEncrypted( false ),
isDecryptable( false ),
+ inProgress( false ),
technicalProblem( false ),
isEncapsulatedRfc822Message( false )
{
@@ -50,10 +52,12 @@ namespace KMail {
TQDateTime creationTime;
TQString decryptionError;
TQString auditLog;
+ GpgME::Error auditLogError;
bool isSigned : 1;
bool isGoodSignature : 1;
bool isEncrypted : 1;
bool isDecryptable : 1;
+ bool inProgress : 1;
bool technicalProblem : 1;
bool isEncapsulatedRfc822Message : 1;
};