summaryrefslogtreecommitdiffstats
path: root/framework/mail/objecttreesource.h
diff options
context:
space:
mode:
Diffstat (limited to 'framework/mail/objecttreesource.h')
-rw-r--r--framework/mail/objecttreesource.h16
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;
52private: 52private:
53 ObjectSourcePrivate *const d; 53 ObjectSourcePrivate *const d;
54}; 54};