summaryrefslogtreecommitdiffstats
path: root/kmail/attachmentcollector.h
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/attachmentcollector.h')
-rw-r--r--kmail/attachmentcollector.h18
1 files changed, 1 insertions, 17 deletions
diff --git a/kmail/attachmentcollector.h b/kmail/attachmentcollector.h
index 52454e8d2..e74496072 100644
--- a/kmail/attachmentcollector.h
+++ b/kmail/attachmentcollector.h
@@ -40,20 +40,7 @@ namespace KMail {
class AttachmentCollector {
public:
- AttachmentCollector()
- : mDiveIntoEncryptions( true ),
- mDiveIntoSignatures( true ),
- mDiveIntoMessages( false ) {}
-
- void setDiveIntoEncryptions( bool dive ) {
- mDiveIntoEncryptions = dive;
- }
- void setDiveIntoSignatures( bool dive ) {
- mDiveIntoSignatures = dive;
- }
- void setDiveIntoMessages( bool dive ) {
- mDiveIntoMessages = dive;
- }
+ AttachmentCollector() {}
void collectAttachmentsFrom( partNode * node );
@@ -61,9 +48,6 @@ namespace KMail {
private:
std::vector<partNode*> mAttachments;
- bool mDiveIntoEncryptions : 1;
- bool mDiveIntoSignatures : 1;
- bool mDiveIntoMessages : 1;
private: // disabled
AttachmentCollector( const AttachmentCollector & );