]> git.saurik.com Git - wxWidgets.git/commitdiff
undid removal of implicit http: from wxLaunchDefaultBrowser() done in last revision...
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 30 Oct 2006 00:44:44 +0000 (00:44 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 30 Oct 2006 00:44:44 +0000 (00:44 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42694 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/utilscmn.cpp

index 5ee6713dbf0c8126df0ebf50d5402d8b6a2e171a..6a37b6ec9ba1a293f5b3103ce51ba0052353ffce 100644 (file)
@@ -729,10 +729,8 @@ bool wxLaunchDefaultBrowser(const wxString& urlOrig, int flags)
     // set the scheme of url to http if it does not have one
     // RR: This doesn't work if the url is just a local path
     wxString url(urlOrig);
-#if 0
     if ( !wxURI(url).HasScheme() )
         url.Prepend(wxT("http://"));
-#endif
 
 
 #if defined(__WXMSW__)