diff options
Diffstat (limited to 'kmail/kmmessage.cpp')
-rw-r--r-- | kmail/kmmessage.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kmail/kmmessage.cpp b/kmail/kmmessage.cpp index 469858a41..9ad91070d 100644 --- a/kmail/kmmessage.cpp +++ b/kmail/kmmessage.cpp @@ -3050,9 +3050,9 @@ void applyHeadersToMessagePart( DwHeaders& headers, KMMessagePart* aPart ) DwParameter *param = ct.FirstParameter(); while(param) { - if (!qstricmp(param->Attribute().c_str(), "charset")) + if (!tqstricmp(param->Attribute().c_str(), "charset")) aPart->setCharset(TQCString(param->Value().c_str()).lower()); - else if (!qstrnicmp(param->Attribute().c_str(), "name*", 5)) + else if (!tqstrnicmp(param->Attribute().c_str(), "name*", 5)) aPart->setName(KMMsgBase::decodeRFC2231String(KMMsgBase::extractRFC2231HeaderField( param->Value().c_str(), "name" ))); else { additionalCTypeParams += ';'; |