removed patch 1373127

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36390 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Surovell
2005-12-14 17:49:05 +00:00
parent 1fbfc5edf6
commit d8746da256

View File

@@ -882,8 +882,8 @@ void wxURI::Resolve(const wxURI& base, int flags)
op += 3;
}
m_path = (wxString)base.m_path.substr(0, bp - base.m_path.c_str()) +
(wxString)m_path.substr((op - m_path.c_str()), m_path.Length());
m_path = base.m_path.substr(0, bp - base.m_path.c_str()) +
m_path.substr((op - m_path.c_str()), m_path.Length());
}
}