From kde-commits Tue Dec 31 21:10:34 2002 From: =?utf-8?q?Marc=20Mutz?= Date: Tue, 31 Dec 2002 21:10:34 +0000 To: kde-commits Subject: kroupware_branch: kdenetwork/kmail X-MARC-Message: https://marc.info/?l=kde-commits&m=104136912521457 CVS commit by mutz: speed up headerAsSendableString() by not copying the whole message, but only the headers (should go into HEAD, too) M +1 -1 kmmessage.cpp 1.318.2.43 --- kdenetwork/kmail/kmmessage.cpp #1.318.2.42:1.318.2.43 @@ -269,5 +269,5 @@ QCString KMMessage::headerAsSendableStri { KMMessage msg; - msg.fromString(asString()); + msg.fromString((headerAsString()+'\n').latin1()); msg.removePrivateHeaderFields(); msg.removeHeaderField("Bcc");