From 8541a9e132ea0176ab2e0f8a4dfe3e6476c5e78b Mon Sep 17 00:00:00 2001 From: Michael Haeckel Date: Sun, 19 Nov 2000 17:31:32 +0000 Subject: [PATCH] Allow sending messages to recievers with non latin names. svn path=/trunk/kdenetwork/kmail/; revision=71416 --- kmmessage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kmmessage.cpp b/kmmessage.cpp index 9f1375840..240cee6e4 100644 --- a/kmmessage.cpp +++ b/kmmessage.cpp @@ -1356,7 +1356,7 @@ const QStrList KMMessage::headerAddrField(const QString& aName) const resultList.clear(); for (addr=addrList->FirstAddress(); addr; addr=addr->Next()) { - resultList.append(decodeRFC2047String(addr->AsString().c_str())); + resultList.append(addr->AsString().c_str()); } if (resultList.count()==0)