diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-02-21 17:05:26 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-02-21 17:05:26 +0100 |
commit | 791679c0d6ced13398109291155db7a7433e43b1 (patch) | |
tree | 9eb2849616950b1b2d95df98052815a18e101976 /framework/mail/objecttreesource.h | |
parent | a846741b8bce911174c6b4b9becc7fcb9a83660c (diff) | |
download | kube-791679c0d6ced13398109291155db7a7433e43b1.tar.gz kube-791679c0d6ced13398109291155db7a7433e43b1.zip |
Fixed build
Diffstat (limited to 'framework/mail/objecttreesource.h')
-rw-r--r-- | framework/mail/objecttreesource.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/framework/mail/objecttreesource.h b/framework/mail/objecttreesource.h index 4823999f..db14e3ff 100644 --- a/framework/mail/objecttreesource.h +++ b/framework/mail/objecttreesource.h | |||
@@ -33,22 +33,22 @@ public: | |||
33 | virtual ~ObjectTreeSource(); | 33 | virtual ~ObjectTreeSource(); |
34 | void setHtmlLoadExternal(bool loadExternal); | 34 | void setHtmlLoadExternal(bool loadExternal); |
35 | void setHtmlMail(bool htmlMail); | 35 | void setHtmlMail(bool htmlMail); |
36 | bool htmlMail() Q_DECL_OVERRIDE; | 36 | bool htmlMail() const Q_DECL_OVERRIDE; |
37 | bool decryptMessage() Q_DECL_OVERRIDE; | 37 | bool decryptMessage() const Q_DECL_OVERRIDE; |
38 | bool htmlLoadExternal() Q_DECL_OVERRIDE; | 38 | bool htmlLoadExternal() const Q_DECL_OVERRIDE; |
39 | bool showSignatureDetails() Q_DECL_OVERRIDE; | 39 | bool showSignatureDetails() const Q_DECL_OVERRIDE; |
40 | void setHtmlMode(MessageViewer::Util::HtmlMode mode) Q_DECL_OVERRIDE; | 40 | void setHtmlMode(MessageViewer::Util::HtmlMode mode) Q_DECL_OVERRIDE; |
41 | void setAllowDecryption(bool allowDecryption); | 41 | void setAllowDecryption(bool allowDecryption); |
42 | int levelQuote() Q_DECL_OVERRIDE; | 42 | int levelQuote() const Q_DECL_OVERRIDE; |
43 | const QTextCodec *overrideCodec() Q_DECL_OVERRIDE; | 43 | const QTextCodec *overrideCodec() Q_DECL_OVERRIDE; |
44 | QString createMessageHeader(KMime::Message *message) Q_DECL_OVERRIDE; | 44 | QString createMessageHeader(KMime::Message *message) Q_DECL_OVERRIDE; |
45 | const MessageViewer::AttachmentStrategy *attachmentStrategy() Q_DECL_OVERRIDE; | 45 | const MessageViewer::AttachmentStrategy *attachmentStrategy() Q_DECL_OVERRIDE; |
46 | MessageViewer::HtmlWriter *htmlWriter() Q_DECL_OVERRIDE; | 46 | MessageViewer::HtmlWriter *htmlWriter() Q_DECL_OVERRIDE; |
47 | MessageViewer::CSSHelperBase *cssHelper() Q_DECL_OVERRIDE; | 47 | MessageViewer::CSSHelperBase *cssHelper() Q_DECL_OVERRIDE; |
48 | QObject *sourceObject() Q_DECL_OVERRIDE; | 48 | QObject *sourceObject() Q_DECL_OVERRIDE; |
49 | bool autoImportKeys() Q_DECL_OVERRIDE; | 49 | bool autoImportKeys() const Q_DECL_OVERRIDE; |
50 | bool showEmoticons() Q_DECL_OVERRIDE; | 50 | bool showEmoticons() const Q_DECL_OVERRIDE; |
51 | bool showExpandQuotesMark() Q_DECL_OVERRIDE; | 51 | bool showExpandQuotesMark() const Q_DECL_OVERRIDE; |
52 | private: | 52 | private: |
53 | ObjectSourcePrivate *const d; | 53 | ObjectSourcePrivate *const d; |
54 | }; | 54 | }; |