summaryrefslogtreecommitdiffstats
path: root/libkmime/kmime_header_parsing.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:35:40 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:35:40 -0600
commit17e2ed52dbf8fac39a04331da02b9572e9e2e304 (patch)
treecd0d57c975a55e05aac71794b363748f24625875 /libkmime/kmime_header_parsing.cpp
parenta684ecdeceae222d5aa930478b7bf59a3b7cae7f (diff)
downloadtdepim-17e2ed52dbf8fac39a04331da02b9572e9e2e304.tar.gz
tdepim-17e2ed52dbf8fac39a04331da02b9572e9e2e304.zip
Rename additional global TQt functions
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;