diff options
author | Timothy Pearson <[email protected]> | 2012-02-28 22:31:39 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-02-28 22:31:39 -0600 |
commit | 41bb408dde90e755b07cd2ab8a9bdec7548c84b0 (patch) | |
tree | 6d4d5407c000add30aa78630e009c0e5d633e440 /src/tools/ntqstrvec.h | |
parent | 1740cd279522c060e738bbbffacab83355d2b794 (diff) | |
download | tqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.tar.gz tqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.zip |
Automated conversion from qt3
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); } }; |