X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f524b09335213d4e41636bdb9c9dc9857f996393..472137baebae6c011ad7d70285de454b9ce7796d:/src/common/utilscmn.cpp diff --git a/src/common/utilscmn.cpp b/src/common/utilscmn.cpp index c439d22484..09e45f2a47 100644 --- a/src/common/utilscmn.cpp +++ b/src/common/utilscmn.cpp @@ -1024,8 +1024,10 @@ static bool DoLaunchDefaultBrowser(const wxString& urlOrig, 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(); @@ -1054,7 +1056,7 @@ static bool DoLaunchDefaultBrowser(const wxString& urlOrig, 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