diff options
author | prep linden <prep@lindenlab.com> | 2010-10-21 15:57:06 -0400 |
---|---|---|
committer | prep linden <prep@lindenlab.com> | 2010-10-21 15:57:06 -0400 |
commit | 03fd5c02f73467d50a10b62e982ce1dee961d315 (patch) | |
tree | 5b5bcd73bbdd2c7233e038d868f51d09dc400594 /indra/newview/llviewerinventory.cpp | |
parent | e12ec78127ce3a52931d1b0fe62ff50cdf238960 (diff) |
Added support for map tracking slapp, share slapp and a voice call slapp.
slapp urls:
secondlife:///app/maptrackavatar/lluid
secondlife:///app/sharewithavatar/lluid
secondlife:///app/voicecallavatar/lluid
Diffstat (limited to 'indra/newview/llviewerinventory.cpp')
-rw-r--r-- | indra/newview/llviewerinventory.cpp | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/indra/newview/llviewerinventory.cpp b/indra/newview/llviewerinventory.cpp index cf01792327..1907aaea4e 100644 --- a/indra/newview/llviewerinventory.cpp +++ b/indra/newview/llviewerinventory.cpp @@ -212,36 +212,6 @@ public: }; LLInventoryHandler gInventoryHandler; -//prep# share -class LLShareWithAvatarHandler : public LLCommandHandler -{ -public: - // requires trusted browser to trigger - LLShareWithAvatarHandler() : LLCommandHandler("sharewithavatar", UNTRUSTED_THROTTLE) - { - } - - bool handle(const LLSD& params, const LLSD& query_map, LLMediaCtrl* web) - { - //Make sure we have some parameters - if (params.size() == 0) - { - return false; - } - - //Get the ID - LLUUID id; - if (!id.set( params[0], FALSE )) - { - return false; - } - - //instigate share with this avatar - LLAvatarActions::share( id ); - return true; - } -}; -LLShareWithAvatarHandler gShareWithAvatar; ///---------------------------------------------------------------------------- /// Class LLViewerInventoryItem |