summaryrefslogtreecommitdiffstats
path: root/qtinterface/qt4/Qt/q3strvec.h
diff options
context:
space:
mode:
Diffstat (limited to 'qtinterface/qt4/Qt/q3strvec.h')
-rw-r--r--qtinterface/qt4/Qt/q3strvec.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/qtinterface/qt4/Qt/q3strvec.h b/qtinterface/qt4/Qt/q3strvec.h
index 2e74bb6..e66b2d6 100644
--- a/qtinterface/qt4/Qt/q3strvec.h
+++ b/qtinterface/qt4/Qt/q3strvec.h
@@ -59,7 +59,7 @@ public:
Q3StrVec( uint size, bool deepc = true ) : Q3PtrVector<char>(size) {dc=deepc;}
~Q3StrVec() { clear(); }
private:
- Item newItem( Item d ) { return dc ? tqstrdup( (const char*)d ) : d; }
+ Item newItem( Item d ) { return dc ? qstrdup( (const char*)d ) : d; }
void deleteItem( Item d ) { if ( dc ) delete[] (char*)d; }
int compareItems( Item s1, Item s2 )
{ return qstrcmp((const char*)s1,
@@ -82,7 +82,7 @@ public:
~Q3StrIVec() { clear(); }
private:
int compareItems( Item s1, Item s2 )
- { return tqstricmp((const char*)s1,
+ { return qstricmp((const char*)s1,
(const char*)s2); }
};