Skip to content
Snippets Groups Projects
Commit f2892c98 authored by Richard Linden's avatar Richard Linden
Browse files

fix for linux and mac

parent 03aef8f2
No related branches found
No related tags found
No related merge requests found
...@@ -233,7 +233,7 @@ gboolean viewer_app_api_GoSLURL(ViewerAppAPI *obj, gchar *slurl, gboolean **succ ...@@ -233,7 +233,7 @@ gboolean viewer_app_api_GoSLURL(ViewerAppAPI *obj, gchar *slurl, gboolean **succ
std::string url = slurl; std::string url = slurl;
LLMediaCtrl* web = NULL; LLMediaCtrl* web = NULL;
const bool trusted_browser = false; const bool trusted_browser = false;
if (LLURLDispatcher::dispatch(url, web, trusted_browser)) if (LLURLDispatcher::dispatch(url, web, "", trusted_browser))
{ {
// bring window to foreground, as it has just been "launched" from a URL // bring window to foreground, as it has just been "launched" from a URL
// todo: hmm, how to get there from here? // todo: hmm, how to get there from here?
......
...@@ -500,7 +500,7 @@ OSErr AEGURLHandler(const AppleEvent *messagein, AppleEvent *reply, long refIn) ...@@ -500,7 +500,7 @@ OSErr AEGURLHandler(const AppleEvent *messagein, AppleEvent *reply, long refIn)
LLMediaCtrl* web = NULL; LLMediaCtrl* web = NULL;
const bool trusted_browser = false; const bool trusted_browser = false;
LLURLDispatcher::dispatch(url, web, trusted_browser); LLURLDispatcher::dispatch(url, web, "", trusted_browser);
} }
return(result); return(result);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment