Borland warning fix.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30145 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2004-10-28 11:48:32 +00:00
parent ce403057df
commit 1ccc19ce9d

View File

@@ -781,7 +781,7 @@ void wxURI::Resolve(const wxURI& base, int flags)
// T.path = remove_dot_segments(T.path); // T.path = remove_dot_segments(T.path);
// endif; // endif;
// T.query = R.query; // T.query = R.query;
if (m_path[(const size_t&)0] != '/') if (!m_path.StartsWith(wxT("/")))
{ {
//Marge paths //Marge paths
const wxChar* op = m_path.c_str(); const wxChar* op = m_path.c_str();