diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-05-07 11:05:47 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-05-07 11:05:47 +0200 |
commit | 2989ba081341d01231bbf2efebd45b0d03958dd7 (patch) | |
tree | 832ff22cd097f23861ef1387e7d38a7df0eae705 /framework/src/domain/mime/messageparser.h | |
parent | 21da50cd64337990186fa3aca7630c523714e90f (diff) | |
download | kube-2989ba081341d01231bbf2efebd45b0d03958dd7.tar.gz kube-2989ba081341d01231bbf2efebd45b0d03958dd7.zip |
Made structure available in debug view
Diffstat (limited to 'framework/src/domain/mime/messageparser.h')
-rw-r--r-- | framework/src/domain/mime/messageparser.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/framework/src/domain/mime/messageparser.h b/framework/src/domain/mime/messageparser.h index ba85973c..72945fea 100644 --- a/framework/src/domain/mime/messageparser.h +++ b/framework/src/domain/mime/messageparser.h | |||
@@ -43,6 +43,7 @@ class KUBE_EXPORT MessageParser : public QObject | |||
43 | Q_PROPERTY (QAbstractItemModel* parts READ parts NOTIFY htmlChanged) | 43 | Q_PROPERTY (QAbstractItemModel* parts READ parts NOTIFY htmlChanged) |
44 | Q_PROPERTY (QAbstractItemModel* attachments READ attachments NOTIFY htmlChanged) | 44 | Q_PROPERTY (QAbstractItemModel* attachments READ attachments NOTIFY htmlChanged) |
45 | Q_PROPERTY (QString rawContent READ rawContent NOTIFY htmlChanged) | 45 | Q_PROPERTY (QString rawContent READ rawContent NOTIFY htmlChanged) |
46 | Q_PROPERTY (QString structureAsString READ structureAsString NOTIFY htmlChanged) | ||
46 | 47 | ||
47 | public: | 48 | public: |
48 | explicit MessageParser(QObject *parent = Q_NULLPTR); | 49 | explicit MessageParser(QObject *parent = Q_NULLPTR); |
@@ -53,7 +54,7 @@ public: | |||
53 | QAbstractItemModel *parts() const; | 54 | QAbstractItemModel *parts() const; |
54 | QAbstractItemModel *attachments() const; | 55 | QAbstractItemModel *attachments() const; |
55 | QString rawContent() const; | 56 | QString rawContent() const; |
56 | 57 | QString structureAsString() const; | |
57 | signals: | 58 | signals: |
58 | void htmlChanged(); | 59 | void htmlChanged(); |
59 | 60 | ||