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.cpp | |
parent | a846741b8bce911174c6b4b9becc7fcb9a83660c (diff) | |
download | kube-791679c0d6ced13398109291155db7a7433e43b1.tar.gz kube-791679c0d6ced13398109291155db7a7433e43b1.zip |
Fixed build
Diffstat (limited to 'framework/mail/objecttreesource.cpp')
-rw-r--r-- | framework/mail/objecttreesource.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/framework/mail/objecttreesource.cpp b/framework/mail/objecttreesource.cpp index 8c155837..d14b7b9b 100644 --- a/framework/mail/objecttreesource.cpp +++ b/framework/mail/objecttreesource.cpp | |||
@@ -68,7 +68,7 @@ MessageViewer::CSSHelperBase *ObjectTreeSource::cssHelper() | |||
68 | return d->mCSSHelper; | 68 | return d->mCSSHelper; |
69 | } | 69 | } |
70 | 70 | ||
71 | bool ObjectTreeSource::htmlLoadExternal() | 71 | bool ObjectTreeSource::htmlLoadExternal() const |
72 | { | 72 | { |
73 | return d->mHtmlLoadExternal; | 73 | return d->mHtmlLoadExternal; |
74 | } | 74 | } |
@@ -78,7 +78,7 @@ void ObjectTreeSource::setHtmlLoadExternal(bool loadExternal) | |||
78 | d->mHtmlLoadExternal = loadExternal; | 78 | d->mHtmlLoadExternal = loadExternal; |
79 | } | 79 | } |
80 | 80 | ||
81 | bool ObjectTreeSource::htmlMail() | 81 | bool ObjectTreeSource::htmlMail() const |
82 | { | 82 | { |
83 | return d->mHtmlMail; | 83 | return d->mHtmlMail; |
84 | } | 84 | } |
@@ -88,17 +88,17 @@ void ObjectTreeSource::setHtmlMail(bool htmlMail) | |||
88 | d->mHtmlMail = htmlMail; | 88 | d->mHtmlMail = htmlMail; |
89 | } | 89 | } |
90 | 90 | ||
91 | bool ObjectTreeSource::decryptMessage() | 91 | bool ObjectTreeSource::decryptMessage() const |
92 | { | 92 | { |
93 | return d->mAllowDecryption; | 93 | return d->mAllowDecryption; |
94 | } | 94 | } |
95 | 95 | ||
96 | bool ObjectTreeSource::showSignatureDetails() | 96 | bool ObjectTreeSource::showSignatureDetails() const |
97 | { | 97 | { |
98 | return true; | 98 | return true; |
99 | } | 99 | } |
100 | 100 | ||
101 | int ObjectTreeSource::levelQuote() | 101 | int ObjectTreeSource::levelQuote() const |
102 | { | 102 | { |
103 | return 1; | 103 | return 1; |
104 | } | 104 | } |
@@ -108,7 +108,7 @@ const QTextCodec *ObjectTreeSource::overrideCodec() | |||
108 | return Q_NULLPTR; | 108 | return Q_NULLPTR; |
109 | } | 109 | } |
110 | 110 | ||
111 | QString ObjectTreeSource::createMessageHeader(KMime::Message *message) | 111 | QString ObjectTreeSource::createMessageHeader(KMime::Message *message) |
112 | { | 112 | { |
113 | return QString(); | 113 | return QString(); |
114 | } | 114 | } |
@@ -118,7 +118,7 @@ const MessageViewer::AttachmentStrategy *ObjectTreeSource::attachmentStrategy() | |||
118 | return MessageViewer::AttachmentStrategy::smart(); | 118 | return MessageViewer::AttachmentStrategy::smart(); |
119 | } | 119 | } |
120 | 120 | ||
121 | QObject *ObjectTreeSource::sourceObject() | 121 | QObject *ObjectTreeSource::sourceObject() |
122 | { | 122 | { |
123 | return Q_NULLPTR; | 123 | return Q_NULLPTR; |
124 | } | 124 | } |
@@ -128,17 +128,17 @@ void ObjectTreeSource::setHtmlMode(MessageViewer::Util::HtmlMode mode) | |||
128 | Q_UNUSED(mode); | 128 | Q_UNUSED(mode); |
129 | } | 129 | } |
130 | 130 | ||
131 | bool ObjectTreeSource::autoImportKeys() | 131 | bool ObjectTreeSource::autoImportKeys() const |
132 | { | 132 | { |
133 | return false; | 133 | return false; |
134 | } | 134 | } |
135 | 135 | ||
136 | bool ObjectTreeSource::showEmoticons() | 136 | bool ObjectTreeSource::showEmoticons() const |
137 | { | 137 | { |
138 | return false; | 138 | return false; |
139 | } | 139 | } |
140 | 140 | ||
141 | bool ObjectTreeSource::showExpandQuotesMark() | 141 | bool ObjectTreeSource::showExpandQuotesMark() const |
142 | { | 142 | { |
143 | return false; | 143 | return false; |
144 | } \ No newline at end of file | 144 | } |