diff options
Diffstat (limited to 'src/tools/ntqstrvec.h')
-rw-r--r-- | src/tools/ntqstrvec.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/ntqstrvec.h b/src/tools/ntqstrvec.h index 8eb7afd8b..f69f6273b 100644 --- a/src/tools/ntqstrvec.h +++ b/src/tools/ntqstrvec.h @@ -54,7 +54,7 @@ public: TQStrVec( uint size, bool deepc = TRUE ) : TQPtrVector<char>(size) {dc=deepc;} ~TQStrVec() { 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: ~TQStrIVec() { clear(); } private: int compareItems( Item s1, Item s2 ) - { return qstricmp((const char*)s1, + { return tqstricmp((const char*)s1, (const char*)s2); } }; |