From 1e73a96f7a5b71df9ed9b8e679da80954a28e07e Mon Sep 17 00:00:00 2001 From: Kevin Ollivier Date: Mon, 20 Aug 2007 01:41:09 +0000 Subject: [PATCH] wxURI variable removed by previous commit is used on MSW, so add it back in for that port. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@48211 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/utilscmn.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/utilscmn.cpp b/src/common/utilscmn.cpp index 82542e4b09..3b0d0a1754 100644 --- a/src/common/utilscmn.cpp +++ b/src/common/utilscmn.cpp @@ -1,4 +1,3 @@ -///////////////////////////////////////////////////////////////////////////// // Name: src/common/utilscmn.cpp // Purpose: Miscellaneous utility functions and classes // Author: Julian Smart @@ -749,6 +748,7 @@ static bool wxLaunchDefaultBrowserBaseImpl(const wxString& url, int flags) { // ShellExecuteEx() opens the URL in an existing window by default so // we can't use it if we need a new window + wxURI uri(url); wxRegKey key(wxRegKey::HKCR, uri.GetScheme() + _T("\\shell\\open")); if ( !key.Exists() ) {