diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-02-16 20:17:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-02-16 20:17:18 +0000 |
commit | f4fae92b6768541e2952173c3d4b09040f95bf7e (patch) | |
tree | d8c5d93232235cd635f3310b4d95490df181ba2d /libkmime/kmime_header_parsing.cpp | |
parent | 125c0a08265b75a133644d3b55f47e37c919f45d (diff) | |
download | tdepim-f4fae92b6768541e2952173c3d4b09040f95bf7e.tar.gz tdepim-f4fae92b6768541e2952173c3d4b09040f95bf7e.zip |
Moved kpilot from kdepim to applications, as the core Trinity libraries should not contain hardware-dependent software
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1221127 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkmime/kmime_header_parsing.cpp')
-rw-r--r-- | libkmime/kmime_header_parsing.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libkmime/kmime_header_parsing.cpp b/libkmime/kmime_header_parsing.cpp index 9222ff914..6b06c9038 100644 --- a/libkmime/kmime_header_parsing.cpp +++ b/libkmime/kmime_header_parsing.cpp @@ -256,7 +256,7 @@ bool parseAtom( const char * & scursor, const char * const send, QPair<const char*,int> maybeResult; if ( parseAtom( scursor, send, maybeResult, allow8Bit ) ) { - result += TQString::fromLatin1( maybeResult.first, maybeResult.second ); + result += TQString::tqfromLatin1( maybeResult.first, maybeResult.second ); return true; } @@ -296,7 +296,7 @@ bool parseToken( const char * & scursor, const char * const send, QPair<const char*,int> maybeResult; if ( parseToken( scursor, send, maybeResult, allow8Bit ) ) { - result += TQString::fromLatin1( maybeResult.first, maybeResult.second ); + result += TQString::tqfromLatin1( maybeResult.first, maybeResult.second ); return true; } @@ -1065,9 +1065,9 @@ bool parseAddressList( const char* & scursor, const char * const send, } -static TQString asterisk = TQString::fromLatin1("*0*",1); -static TQString asteriskZero = TQString::fromLatin1("*0*",2); -//static TQString asteriskZeroAsterisk = TQString::fromLatin1("*0*",3); +static TQString asterisk = TQString::tqfromLatin1("*0*",1); +static TQString asteriskZero = TQString::tqfromLatin1("*0*",2); +//static TQString asteriskZeroAsterisk = TQString::tqfromLatin1("*0*",3); bool parseParameter( const char* & scursor, const char * const send, QPair<TQString,QStringOrQPair> & result, bool isCRLF ) { @@ -1223,7 +1223,7 @@ static void decodeRFC2231Value( Codec* & rfc2231Codec, // take the whole value to be in latin-1: KMIME_WARN << "No charset in extended-initial-value. " "Assuming \"iso-8859-1\"." << endl; - value += TQString::fromLatin1( decBegin, source.second ); + value += TQString::tqfromLatin1( decBegin, source.second ); return; } @@ -1263,7 +1263,7 @@ static void decodeRFC2231Value( Codec* & rfc2231Codec, } if ( !textcodec ) { - value += TQString::fromLatin1( decCursor, decEnd - decCursor ); + value += TQString::tqfromLatin1( decCursor, decEnd - decCursor ); return; } @@ -1348,7 +1348,7 @@ bool parseParameterList( const char* & scursor, const char * const send, } else { // not encoded. if ( (*it).qpair.first ) - value += TQString::fromLatin1( (*it).qpair.first, (*it).qpair.second ); + value += TQString::tqfromLatin1( (*it).qpair.first, (*it).qpair.second ); else value += (*it).qstring; } @@ -1377,7 +1377,7 @@ bool parseParameterList( const char* & scursor, const char * const send, } else { // not encoded if ( (*it).qpair.first ) - value += TQString::fromLatin1( (*it).qpair.first, (*it).qpair.second ); + value += TQString::tqfromLatin1( (*it).qpair.first, (*it).qpair.second ); else value += (*it).qstring; } |