diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:33:40 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:33:40 -0600 |
commit | 4fb897b216c41c13f128c71bcc66f60e2dc601c4 (patch) | |
tree | 2891b54cd6ec39db133da0110028ec93fc006751 /kabc/vcard/VCard.cpp | |
parent | 8fc8811ef6079a15decd33f1ea5d95dd718e4557 (diff) | |
download | tdelibs-4fb897b216c41c13f128c71bcc66f60e2dc601c4.tar.gz tdelibs-4fb897b216c41c13f128c71bcc66f60e2dc601c4.zip |
Rename additional global TQt functions
Diffstat (limited to 'kabc/vcard/VCard.cpp')
-rw-r--r-- | kabc/vcard/VCard.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kabc/vcard/VCard.cpp b/kabc/vcard/VCard.cpp index 50c25da59..eb3f57f6e 100644 --- a/kabc/vcard/VCard.cpp +++ b/kabc/vcard/VCard.cpp @@ -130,12 +130,12 @@ VCard::_parse() firstPart = firstPart.right(firstPart.length() - split - 1); } - if (qstrnicmp(firstPart, "BEGIN", 5) != 0) { // No BEGIN ! + if (tqstrnicmp(firstPart, "BEGIN", 5) != 0) { // No BEGIN ! vDebug("No BEGIN"); return; } - if (qstrnicmp(valuePart, "VCARD", 5) != 0) { // Not a vcard ! + if (tqstrnicmp(valuePart, "VCARD", 5) != 0) { // Not a vcard ! vDebug("No VCARD"); return; } @@ -203,10 +203,10 @@ VCard::_parse() firstPart = firstPart.right(firstPart.length() - split - 1); } - if (qstricmp(firstPart, "END") != 0) // No END ! + if (tqstricmp(firstPart, "END") != 0) // No END ! return; - if (qstricmp(valuePart, "VCARD") != 0) // Not a vcard ! + if (tqstricmp(valuePart, "VCARD") != 0) // Not a vcard ! return; } |