CVS commit by kloecker: Backport: Fix bug 77068 (Signature from file has an extra '\n' attached) by not requiring a trailing '\n' when reading the signature file. M +1 -1 kmidentity.cpp 1.73.2.1 --- kdepim/kmail/kmidentity.cpp #1.73:1.73.2.1 @@ -129,5 +129,5 @@ QString Signature::textFromFile( bool * if ( ok ) *ok = true; // ### hmm, should we allow other encodings, too? - return QString::fromLocal8Bit( kFileToString( mUrl ) ); + return QString::fromLocal8Bit( kFileToString( mUrl, false ) ); }