diff options
author | Denis Serdjuk <dserduk@productengine.com> | 2010-02-12 16:09:18 +0200 |
---|---|---|
committer | Denis Serdjuk <dserduk@productengine.com> | 2010-02-12 16:09:18 +0200 |
commit | c06742b231b9e7b108f5e3dce6b72d9b9a639537 (patch) | |
tree | 957cbf2e811f13b31299d014f157e32f297377e7 /indra/newview/llpanelgroupinvite.h | |
parent | 8b609519ea46b785e529c83067ede3656fc10828 (diff) |
fixed Bug Low EXT-4732 Group invitation is broken for offline avatars
Cause:
gObjectList does contain offline avatars and panel could get avatar name and fill the list
Solution:
This situation is possible only for offline friend, therefore extra avatartracker search has been added.
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llpanelgroupinvite.h')
-rw-r--r-- | indra/newview/llpanelgroupinvite.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llpanelgroupinvite.h b/indra/newview/llpanelgroupinvite.h index 37135b488a..b095dd2395 100644 --- a/indra/newview/llpanelgroupinvite.h +++ b/indra/newview/llpanelgroupinvite.h @@ -43,6 +43,10 @@ public: ~LLPanelGroupInvite(); void addUsers(std::vector<LLUUID>& agent_ids); + /** + * this callback is being used to add a user whose fullname isn't been loaded before invoking of addUsers(). + */ + void addUserCallback(const LLUUID& id, const std::string& first_name, const std::string& last_name); void clear(); void update(); |