X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a7ea63e21fda950c658a477d59d0818aab993fc9..0eabd3c635380a69982b08178391ba8e6f04382b:/src/common/stringimpl.cpp diff --git a/src/common/stringimpl.cpp b/src/common/stringimpl.cpp index f16811fa7a..0575bd8fc5 100644 --- a/src/common/stringimpl.cpp +++ b/src/common/stringimpl.cpp @@ -170,17 +170,15 @@ void wxStringImpl::InitWith(const wxChar *psz, size_t nPos, size_t nLength) } } -// poor man's iterators are "void *" pointers -wxStringImpl::wxStringImpl(const void *pStart, const void *pEnd) +wxStringImpl::wxStringImpl(const_iterator first, const_iterator last) { - if ( pEnd >= pStart ) + if ( last >= first ) { - InitWith((const wxChar *)pStart, 0, - (const wxChar *)pEnd - (const wxChar *)pStart); + InitWith(first, 0, last - first); } else { - wxFAIL_MSG( _T("pStart is not before pEnd") ); + wxFAIL_MSG( _T("first must be before last") ); Init(); } }