diff options
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 | ||