Fixed typo.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31032 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2004-12-16 19:44:44 +00:00
parent 09cbc94fea
commit ea4daac45c

View File

@@ -739,7 +739,7 @@ void wxURI::Resolve(const wxURI& base, int flags)
return;
}
//No sheme - inherit
//No scheme - inherit
m_scheme = base.m_scheme;
m_fields |= wxURI_SCHEME;
@@ -802,7 +802,7 @@ void wxURI::Resolve(const wxURI& base, int flags)
// T.query = R.query;
if (m_path[0u] != wxT('/'))
{
//Marge paths
//Merge paths
const wxChar* op = m_path.c_str();
const wxChar* bp = base.m_path.c_str() + base.m_path.Length();