diff options
author | andreykproductengine <akleshchev@productengine.com> | 2016-08-17 20:35:00 +0300 |
---|---|---|
committer | andreykproductengine <akleshchev@productengine.com> | 2016-08-17 20:35:00 +0300 |
commit | 0f061689914d1d73272d373c877d1656933ae501 (patch) | |
tree | 6ff7ac3b6eedae4449c8d3609458c940ef0ce3ba /indra/newview/llgroupiconctrl.h | |
parent | 57060fa0ebfacf3705ec2d9770e83aab3c86b894 (diff) |
MAINT-6655 Group inspector doesn't support default icon.
Diffstat (limited to 'indra/newview/llgroupiconctrl.h')
-rw-r--r-- | indra/newview/llgroupiconctrl.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/indra/newview/llgroupiconctrl.h b/indra/newview/llgroupiconctrl.h index f8b22cf581..43e384d3e2 100644 --- a/indra/newview/llgroupiconctrl.h +++ b/indra/newview/llgroupiconctrl.h @@ -66,7 +66,13 @@ public: */ virtual void setValue(const LLSD& value); - void setIconId(const LLSD& value); + /** + * Sets icon_id as icon value directly. Avoids LLGroupMgr cache checks for group id + * Uses default icon in case id is null. + * + * @params icon_id - it is processed as icon id, default image will be used in case id is null. + */ + void setIconId(const LLUUID& icon_id); // LLGroupMgrObserver observer trigger virtual void changed(LLGroupChange gc); |