diff options
| author | andreykproductengine <akleshchev@productengine.com> | 2016-03-11 20:16:03 +0200 |
|---|---|---|
| committer | andreykproductengine <akleshchev@productengine.com> | 2016-03-11 20:16:03 +0200 |
| commit | 230fc28d8a72e75a8f2af2ab5fa5ee0e3ccca4a1 (patch) | |
| tree | 67d9c4133c4c9fce49b326180b138ed75fa990df /indra/llui/llurlaction.cpp | |
| parent | debc51af6b6a35f7f635be9483a3bc4d0846a90d (diff) | |
MAINT-6097 FIXED On required update, clicking link to release notes opens browser behind menu
Diffstat (limited to 'indra/llui/llurlaction.cpp')
| -rwxr-xr-x | indra/llui/llurlaction.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/llui/llurlaction.cpp b/indra/llui/llurlaction.cpp index 12537d9dd1..027a3e3a64 100755 --- a/indra/llui/llurlaction.cpp +++ b/indra/llui/llurlaction.cpp @@ -83,12 +83,13 @@ void LLUrlAction::openURLExternal(std::string url) } } -void LLUrlAction::executeSLURL(std::string url) +bool LLUrlAction::executeSLURL(std::string url, bool trusted_content) { if (sExecuteSLURLCallback) { - sExecuteSLURLCallback(url ,true); + return sExecuteSLURLCallback(url, trusted_content); } + return false; } void LLUrlAction::clickAction(std::string url, bool trusted_content) |
