diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-09-22 13:42:10 +0100 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-09-22 13:42:10 +0100 |
commit | 3fb0736bec2fdea6fbb729e2582aa69bd270b318 (patch) | |
tree | 8683a7ca507bbce76b72e763178950a3c50f978c | |
parent | b8337bdd2ce2d07b23eb0354adfef984fb218b9a (diff) |
CID-509
Checker: UNINIT_CTOR
Function: LLAvatarListItem::LLAvatarListItem(bool)
File: /indra/newview/llavatarlistitem.cpp
-rw-r--r-- | indra/newview/llavatarlistitem.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llavatarlistitem.cpp b/indra/newview/llavatarlistitem.cpp index 8fc4ad6763..9f7699b3db 100644 --- a/indra/newview/llavatarlistitem.cpp +++ b/indra/newview/llavatarlistitem.cpp @@ -70,7 +70,8 @@ LLAvatarListItem::LLAvatarListItem(bool not_from_ui_factory/* = true*/) mOnlineStatus(E_UNKNOWN), mShowInfoBtn(true), mShowProfileBtn(true), - mShowPermissions(false) + mShowPermissions(false), + mHovered(false) { if (not_from_ui_factory) { |