X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3096bd2fa7b88105bc54c08e3c878585de1a9b91..d314c3bbb03663aea453fd5b5cc0275d93a70ef9:/src/common/url.cpp diff --git a/src/common/url.cpp b/src/common/url.cpp index 203beef31d..71cae1f2f7 100644 --- a/src/common/url.cpp +++ b/src/common/url.cpp @@ -162,7 +162,7 @@ bool wxURL::PrepHost(wxString& url) wxString temp_url; int pos, pos2; - if ((url.GetChar(0) != '/') || (url.GetChar(1) != '/')) + if ((url.GetChar(0) != wxT('/')) || (url.GetChar(1) != wxT('/'))) return FALSE; url = url(2, url.Length()); @@ -240,7 +240,7 @@ bool wxURL::FetchProtocol() // --------- wxURL get ------------------------------------------ // -------------------------------------------------------------- -wxInputStream *wxURL::GetInputStream(void) +wxInputStream *wxURL::GetInputStream() { wxInputStream *the_i_stream = NULL;