summaryrefslogtreecommitdiffstats
path: root/src/tools/qstrvec.h
diff options
context:
space:
mode:
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); }
};