* Bug fix in wxFilter*Stream

* corrected the URL parser


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@726 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Guilhem Lavaux
1998-09-10 17:22:20 +00:00
parent 0c32066b58
commit b7db6f0b6d
2 changed files with 5 additions and 1 deletions

View File

@@ -147,7 +147,7 @@ bool wxURL::PrepHost(wxString& url)
pos = url.Find('/');
if (pos == -1)
return FALSE;
pos = url.Length();
pos2 = url.Find(':');
if (pos2 != -1 && pos2 < pos) {