summaryrefslogtreecommitdiffstats
path: root/libkmime/kmime_header_parsing.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libkmime/kmime_header_parsing.cpp')
-rw-r--r--libkmime/kmime_header_parsing.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libkmime/kmime_header_parsing.cpp b/libkmime/kmime_header_parsing.cpp
index 14d4ed118..32099f29e 100644
--- a/libkmime/kmime_header_parsing.cpp
+++ b/libkmime/kmime_header_parsing.cpp
@@ -1402,7 +1402,7 @@ static bool parseDayName( const char* & scursor, const char * const send )
if ( send - scursor < 3 ) return false;
for ( int i = 0 ; i < stdDayNamesLen ; ++i )
- if ( qstrnicmp( scursor, stdDayNames[i], 3 ) == 0 ) {
+ if ( tqstrnicmp( scursor, stdDayNames[i], 3 ) == 0 ) {
scursor += 3;
kdDebug() << "found " << stdDayNames[i] << endl;
return true;
@@ -1426,7 +1426,7 @@ static bool parseMonthName( const char* & scursor, const char * const send,
if ( send - scursor < 3 ) return false;
for ( result = 0 ; result < stdMonthNamesLen ; ++result )
- if ( qstrnicmp( scursor, stdMonthNames[result], 3 ) == 0 ) {
+ if ( tqstrnicmp( scursor, stdMonthNames[result], 3 ) == 0 ) {
scursor += 3;
return true;
}
@@ -1495,7 +1495,7 @@ static bool parseAlphaNumericTimeZone( const char* & scursor,
if ( !parseToken( scursor, send, maybeTimeZone, false /*no 8bit*/ ) )
return false;
for ( int i = 0 ; i < timeZonesLen ; ++i )
- if ( qstrnicmp( timeZones[i].tzName,
+ if ( tqstrnicmp( timeZones[i].tzName,
maybeTimeZone.first, maybeTimeZone.second ) == 0 ) {
scursor += maybeTimeZone.second;
secsEastOfGMT = timeZones[i].secsEastOfGMT;