diff options
author | Timothy Pearson <[email protected]> | 2012-03-02 02:11:59 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-02 02:11:59 -0600 |
commit | 9a75b154bf0732aa3a501b6e31e566e06c5f8a31 (patch) | |
tree | df1e10cc7504665622d096f9ba80dc9e56f3afb8 /src/tools/qstrvec.h | |
parent | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (diff) | |
download | qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.tar.gz qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.zip |
Undo prior accidental commit
Diffstat (limited to 'src/tools/qstrvec.h')
-rw-r--r-- | src/tools/qstrvec.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/qstrvec.h b/src/tools/qstrvec.h index d3c580f..360d4c7 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 ? 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, @@ -77,7 +77,7 @@ public: ~QStrIVec() { clear(); } private: int compareItems( Item s1, Item s2 ) - { return tqstricmp((const char*)s1, + { return qstricmp((const char*)s1, (const char*)s2); } }; |