diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-26 18:17:24 -0800 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-26 18:17:24 -0800 |
commit | a3e7c8c48031bb715277644ef517d1158933d9b2 (patch) | |
tree | 40ee70002189d168079b3da5364694244c6c1fa5 /indra | |
parent | 25057b311c2aa9a79d33184739f2a73de0bd21e4 (diff) |
CID-389
Checker: UNINIT_CTOR
Function: LLPanelObject::LLPanelObject()
File: /indra/newview/llpanelobject.cpp
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llpanelobject.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llpanelobject.cpp b/indra/newview/llpanelobject.cpp index d17c287cc7..30221da12a 100644 --- a/indra/newview/llpanelobject.cpp +++ b/indra/newview/llpanelobject.cpp @@ -316,11 +316,14 @@ BOOL LLPanelObject::postBuild() LLPanelObject::LLPanelObject() : LLPanel(), + mComboMaterialItemCount(0), mIsPhysical(FALSE), mIsTemporary(FALSE), mIsPhantom(FALSE), mCastShadows(TRUE), - mSelectedType(MI_BOX) + mSelectedType(MI_BOX), + mSculptTextureRevert(LLUUID::null), + mSculptTypeRevert(0) { } |