From 17e2ed52dbf8fac39a04331da02b9572e9e2e304 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 1 Mar 2012 13:35:40 -0600 Subject: Rename additional global TQt functions --- libkmime/kmime_header_parsing.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libkmime/kmime_header_parsing.cpp') 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; -- cgit v1.2.1