X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/65c75abefc4b06d49421be4af5397d8b3d5647d4..f877815e1b36c9b059b0d1025db4df4845e2a57d:/src/common/string.cpp diff --git a/src/common/string.cpp b/src/common/string.cpp index e15d84319d..4715f63154 100644 --- a/src/common/string.cpp +++ b/src/common/string.cpp @@ -9,7 +9,7 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma implementation "string.h" #endif @@ -509,13 +509,15 @@ size_t wxStringBase::rfind(wxChar ch, size_t nStart) const wxASSERT( nStart <= length() ); } - const wxChar *p = wxStrrchr(c_str(), ch); - - if ( p == NULL ) - return npos; + const wxChar *actual; + for ( actual = c_str() + ( nStart == npos ? length() : nStart + 1 ); + actual > c_str(); --actual ) + { + if ( *(actual - 1) == ch ) + return (actual - 1) - c_str(); + } - size_t result = p - c_str(); - return ( result > nStart ) ? npos : result; + return npos; } size_t wxStringBase::find_first_of(const wxChar* sz, size_t nStart) const @@ -1961,6 +1963,11 @@ wxArrayString::~wxArrayString() wxDELETEA(m_pItems); } +void wxArrayString::reserve(size_t nSize) +{ + Alloc(nSize); +} + // pre-allocates memory (frees the previous data!) void wxArrayString::Alloc(size_t nSize) {