From kde-commits Mon Mar 31 22:55:03 2003 From: =?utf-8?q?Ingo=20Kl=C3=B6cker?= Date: Mon, 31 Mar 2003 22:55:03 +0000 To: kde-commits Subject: KDE_3_1_BRANCH: kdenetwork/kmail X-MARC-Message: https://marc.info/?l=kde-commits&m=104915137407841 CVS commit by kloecker: Backport fix for bug 56592: Displaying folded Content-Description in MIME tree viewer is broken M +3 -0 partNode.cpp 1.25.2.3 --- kdenetwork/kmail/partNode.cpp #1.25.2.2:1.25.2.3 @@ -12,4 +12,5 @@ #include #include "kmmimeparttree.h" +#include /* @@ -318,4 +319,6 @@ void partNode::fillMimePartTree( KMMimeP cntSize = size; } + // remove linebreak+whitespace from folded Content-Description + cntDesc.replace( QRegExp("\\n\\s*"), " " ); kdDebug(5006) << " Inserting one item into MimePartTree" << endl;