From 806ffd552d87c3e4624c559530f18c5cbafc420c Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 3 Nov 2009 14:47:34 +0000 Subject: [PATCH] Compilation fix after r62545. Cherry picking the change from the trunk didn't work correctly. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@62547 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/utilscmn.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/common/utilscmn.cpp b/src/common/utilscmn.cpp index 2bdc24f6a4..a8ec2e6ff6 100644 --- a/src/common/utilscmn.cpp +++ b/src/common/utilscmn.cpp @@ -764,8 +764,10 @@ static bool wxLaunchDefaultBrowserBaseImpl(const wxString& url, int flags) // we only know the syntax of WWW_OpenURL DDE request for IE, // optimistically assume that all other browsers are compatible // with it + static const wxChar *TOPIC_OPEN_URL = wxT("WWW_OpenURL"); + wxString ddeCmd; wxRegKey keyTopic(keyDDE, wxT("topic")); - bool ok = keyTopic.Exists() && keyTopic == wxT("WWW_OpenURL"); + bool ok = keyTopic.Exists() && keyTopic == TOPIC_OPEN_URL; if ( ok ) { ddeCmd = keyDDE.QueryDefaultValue(); @@ -794,7 +796,7 @@ static bool wxLaunchDefaultBrowserBaseImpl(const wxString& url, int flags) wxLogNull noLog; const wxString ddeServer = wxRegKey(keyDDE, wxT("application")); - if ( wxExecuteDDE(ddeServer, ddeTopic, ddeCmd) ) + if ( wxExecuteDDE(ddeServer, TOPIC_OPEN_URL, ddeCmd) ) return true; // this is not necessarily an error: maybe browser is