From ba5a47aed8025996fa5c103a151cc19fe1119ac6 Mon Sep 17 00:00:00 2001 From: Ryan Norton Date: Sun, 31 Oct 2004 18:26:03 +0000 Subject: [PATCH] because gcc is dumb and can't tell the difference between a std::string and a wxString git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30206 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/uri.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/uri.cpp b/src/common/uri.cpp index b2e619adf9..0608b4c82f 100644 --- a/src/common/uri.cpp +++ b/src/common/uri.cpp @@ -812,7 +812,7 @@ void wxURI::Resolve(const wxURI& base, int flags) } m_path = base.m_path.substr(0, bp - base.m_path.c_str()) + - m_path.Mid((op - m_path.c_str()), m_path.Length()); + m_path.substr((op - m_path.c_str()), m_path.Length()); } } -- 2.45.2