Index: src/libchcore/TString.cpp =================================================================== diff -u -N -re96806b7f8ff7ca7e9f4afbea603e6351a3dc3e3 -ra27d1acf1bda3c25b6dcce0d0eb0278009ce63ae --- src/libchcore/TString.cpp (.../TString.cpp) (revision e96806b7f8ff7ca7e9f4afbea603e6351a3dc3e3) +++ src/libchcore/TString.cpp (.../TString.cpp) (revision a27d1acf1bda3c25b6dcce0d0eb0278009ce63ae) @@ -434,7 +434,7 @@ * \param[in] psz - unicode TString to which the TString object will be compared * \return <0 if this TString object is "less" than psz, 0 if they are equal and >0 otherwise. */ - int_t TString::Compare(const wchar_t* psz) const + int TString::Compare(const wchar_t* psz) const { return wcscmp(m_pszData ? m_pszData : L"", psz ? psz : L""); } @@ -443,7 +443,7 @@ * \param[in] str - TString object to which internal TString object will be compared * \return <0 if this TString object is "less" than psz, 0 if they are equal and >0 otherwise. */ - int_t TString::Compare(const TString& str) const + int TString::Compare(const TString& str) const { return Compare(str.m_pszData); } @@ -452,7 +452,7 @@ * \param[in] psz - unicode TString to which internal TString object will be compared * \return <0 if this TString object is "less" than psz, 0 if they are equal and >0 otherwise. */ - int_t TString::CompareNoCase(const wchar_t* psz) const + int TString::CompareNoCase(const wchar_t* psz) const { return _wcsicmp(m_pszData ? m_pszData : L"", psz ? psz : L""); } @@ -461,7 +461,7 @@ * \param[in] str - TString object to which internal TString object will be compared * \return <0 if this TString object is "less" than str, 0 if they are equal and >0 otherwise. */ - int_t TString::CompareNoCase(const TString& str) const + int TString::CompareNoCase(const TString& str) const { return CompareNoCase(str.m_pszData); }