summaryrefslogtreecommitdiffstats
path: root/src/tools/qstrvec.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:24:30 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:24:30 -0600
commita830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (patch)
tree3910055c634e2ca44eacd2c892118634df9b3597 /src/tools/qstrvec.h
parentb0b53cc84f215df9b9bcce77253a6b7a9d300986 (diff)
downloadqt3-a830bf10.tar.gz
qt3-a830bf10.zip
Rename additional global TQt functions
Diffstat (limited to 'src/tools/qstrvec.h')
-rw-r--r--src/tools/qstrvec.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/qstrvec.h b/src/tools/qstrvec.h
index 360d4c7..d3c580f 100644
--- a/src/tools/qstrvec.h
+++ b/src/tools/qstrvec.h
@@ -54,7 +54,7 @@ public:
QStrVec( uint size, bool deepc = TRUE ) : QPtrVector<char>(size) {dc=deepc;}
~QStrVec() { clear(); }
private:
- Item newItem( Item d ) { return dc ? qstrdup( (const char*)d ) : d; }
+ Item newItem( Item d ) { return dc ? tqstrdup( (const char*)d ) : d; }
void deleteItem( Item d ) { if ( dc ) delete[] (char*)d; }
int compareItems( Item s1, Item s2 )
{ return qstrcmp((const char*)s1,
@@ -77,7 +77,7 @@ public:
~QStrIVec() { clear(); }
private:
int compareItems( Item s1, Item s2 )
- { return qstricmp((const char*)s1,
+ { return tqstricmp((const char*)s1,
(const char*)s2); }
};