From c15f4002d1d029b36aa6fbd2c3550f080ae3985f Mon Sep 17 00:00:00 2001 From: Ingo Klcker Date: Sat, 4 Aug 2001 16:44:33 +0000 Subject: [PATCH] If a message is clearsigned with PGP/GnuPG trailing white spaces are removed. Therefore the "-- " which marks the begin of the signature is changed to "--". The attached patch makes the stripping of signatures work with clearsigned messages. svn path=/trunk/kdenetwork/kmail/; revision=109130 --- kmmessage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kmmessage.cpp b/kmmessage.cpp index 9441b9dec..dc1a5bfb9 100644 --- a/kmmessage.cpp +++ b/kmmessage.cpp @@ -446,7 +446,7 @@ static void smartQuote( QString &msg, const QString &ownIndent, { QStringList part; QString startOfSig1; - QString startOfSig2 = ownIndent+"-- "; + QString startOfSig2 = ownIndent+"--"; QString oldIndent; bool firstPart = true; int i = 0;