diff options
author | Mike Antipov <mantipov@productengine.com> | 2009-12-26 18:56:19 +0200 |
---|---|---|
committer | Mike Antipov <mantipov@productengine.com> | 2009-12-26 18:56:19 +0200 |
commit | 70e6b5a7f7027b7f9c005ca1ce43601f953dc951 (patch) | |
tree | 561a4c63ee5f5199af74000a13b53f5622e1b256 /indra/newview/llimview.h | |
parent | c3f2859c9f91d0c26c256b498c29da624afb8fb9 (diff) |
Fixed low bug EXT-3684 ("Default" icon is used always for group calls in the voice notifications instead of group icon)
-- implemented LLGroupIconCtrl to show group icon for passed group UUID.
-- added LLGroupIconCtrl to incoming and outgoing dialogs
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llimview.h')
-rw-r--r-- | indra/newview/llimview.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/indra/newview/llimview.h b/indra/newview/llimview.h index cec9d1642f..b0f5f3d813 100644 --- a/indra/newview/llimview.h +++ b/indra/newview/llimview.h @@ -501,6 +501,14 @@ protected: virtual void onLifetimeExpired() {}; virtual void getAllowedRect(LLRect& rect); + + /** + * Sets icon depend on session. + * + * If passed session_id is a group id group icon will be shown, otherwise avatar icon for participant_id + */ + void setIcon(const LLSD& session_id, const LLSD& participant_id); + LLSD mPayload; }; |