diff options
| author | Vadim Savchuk <vsavchuk@productengine.com> | 2010-01-26 20:17:45 +0200 |
|---|---|---|
| committer | Vadim Savchuk <vsavchuk@productengine.com> | 2010-01-26 20:17:45 +0200 |
| commit | dfad0f4e67821670cfc806dd2f8fcdf9a0d96530 (patch) | |
| tree | d297bb8dfc88f523f8837488bb697d2ae0da80e3 /indra/llui/llscrolllistitem.h | |
| parent | 5344f82e282ed4ce1c016c1e164f674f64bb78be (diff) | |
Fixed critical bug EXT-4663 ([BSI] Inviting Residents to groups produces error 100% of time).
Overriden LLScrollListItem::getUUID() in LLNameListCtrl so that you can get correct ID of a name list item.
--HG--
branch : product-engine
Diffstat (limited to 'indra/llui/llscrolllistitem.h')
| -rw-r--r-- | indra/llui/llscrolllistitem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llscrolllistitem.h b/indra/llui/llscrolllistitem.h index 15b86cc945..25ce846d90 100644 --- a/indra/llui/llscrolllistitem.h +++ b/indra/llui/llscrolllistitem.h @@ -95,7 +95,7 @@ public: void setUserdata( void* userdata ) { mUserdata = userdata; } void* getUserdata() const { return mUserdata; } - LLUUID getUUID() const { return mItemValue.asUUID(); } + virtual LLUUID getUUID() const { return mItemValue.asUUID(); } LLSD getValue() const { return mItemValue; } void setRect(LLRect rect) { mRectangle = rect; } |
