]> git.saurik.com Git - wxWidgets.git/commitdiff
wxString(const wxString& str, size_t position, size_t len) ctor now doesn't
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 1 Jan 1999 22:49:27 +0000 (22:49 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 1 Jan 1999 22:49:27 +0000 (22:49 +0000)
have default value for the third param to avoid conflicts with
wxString(const wxString& str, size_t len) ctor. Sorry if this breaks code
which relied on it...

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1305 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/string.h

index 0e8abe5d27409f06153a8fc28d3bd65775b94a22..c54084e2687400e365137592121048ef752a7749 100644 (file)
@@ -601,7 +601,7 @@ public:
     /** @name constructors */
     //@{
       /// take nLen chars starting at nPos
-      wxString(const wxString& str, size_t nPos, size_t nLen = npos)
+      wxString(const wxString& str, size_t nPos, size_t nLen)
       {
         wxASSERT( str.GetStringData()->IsValid() );
         InitWith(str.c_str(), nPos, nLen == npos ? 0 : nLen);