From kde-commits Mon Mar 31 22:55:07 2003 From: =?utf-8?q?Ingo=20Kl=C3=B6cker?= Date: Mon, 31 Mar 2003 22:55:07 +0000 To: kde-commits Subject: kdepim/kmail X-MARC-Message: https://marc.info/?l=kde-commits&m=104915142307916 CVS commit by kloecker: Fix bug 56592: Displaying folded Content-Description in MIME tree viewer is broken CCMAIL: 56592-fixed@bugs.kde.org M +3 -0 partNode.cpp 1.33 --- kdepim/kmail/partNode.cpp #1.32:1.33 @@ -13,4 +13,5 @@ #include "kmmimeparttree.h" #include +#include /* @@ -330,4 +331,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;