]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/string.cpp
moved wxID_SEPARATOR from menuitem.h to defs.h
[wxWidgets.git] / src / common / string.cpp
index fe8480cd452c4676141eb87c8521424e19ae92b1..ed777353a7e37d8cc35e9183dc453a3f34b63b16 100644 (file)
@@ -1643,17 +1643,6 @@ size_t wxString::find_last_not_of(wxChar ch, size_t nStart) const
     return npos;
 }
 
-wxString wxString::substr(size_t nStart, size_t nLen) const
-{
-  // npos means 'take all'
-  if ( nLen == npos )
-    nLen = 0;
-
-  wxASSERT( nStart + nLen <= Len() );
-
-  return wxString(c_str() + nStart, nLen == npos ? 0 : nLen);
-}
-
 wxString& wxString::erase(size_t nStart, size_t nLen)
 {
   wxString strTmp(c_str(), nStart);