diff options
Diffstat (limited to 'framework/src')
-rw-r--r-- | framework/src/domain/mime/mimetreeparser/nodehelper.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/src/domain/mime/mimetreeparser/nodehelper.cpp b/framework/src/domain/mime/mimetreeparser/nodehelper.cpp index c75ee102..b8f49386 100644 --- a/framework/src/domain/mime/mimetreeparser/nodehelper.cpp +++ b/framework/src/domain/mime/mimetreeparser/nodehelper.cpp | |||
@@ -84,7 +84,7 @@ void NodeHelper::setNodeProcessed(KMime::Content *node, bool recurse) | |||
84 | return; | 84 | return; |
85 | } | 85 | } |
86 | mProcessedNodes.append(node); | 86 | mProcessedNodes.append(node); |
87 | qCDebug(MIMETREEPARSER_LOG) << "Node processed: " << node->index().toString() << node->contentType()->as7BitString(); | 87 | // qCDebug(MIMETREEPARSER_LOG) << "Node processed: " << node->index().toString() << node->contentType()->as7BitString(); |
88 | //<< " decodedContent" << node->decodedContent(); | 88 | //<< " decodedContent" << node->decodedContent(); |
89 | if (recurse) { | 89 | if (recurse) { |
90 | const auto contents = node->contents(); | 90 | const auto contents = node->contents(); |
@@ -101,7 +101,7 @@ void NodeHelper::setNodeUnprocessed(KMime::Content *node, bool recurse) | |||
101 | } | 101 | } |
102 | mProcessedNodes.removeAll(node); | 102 | mProcessedNodes.removeAll(node); |
103 | 103 | ||
104 | qCDebug(MIMETREEPARSER_LOG) << "Node UNprocessed: " << node; | 104 | // qCDebug(MIMETREEPARSER_LOG) << "Node UNprocessed: " << node; |
105 | if (recurse) { | 105 | if (recurse) { |
106 | const auto contents = node->contents(); | 106 | const auto contents = node->contents(); |
107 | for (KMime::Content *c : contents) { | 107 | for (KMime::Content *c : contents) { |