diff options
| author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-27 16:19:32 -0800 | 
|---|---|---|
| committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-27 16:19:32 -0800 | 
| commit | bfda8b2cfee5512f6737ea2802b69bdac66ed3ab (patch) | |
| tree | cde159d0c56a5a982f312a3d503e8e0490a1ea7c /indra | |
| parent | 7814eaec0082dfc505076afca33b51eeb6f591fe (diff) | |
CID-385
Checker: UNINIT_CTOR
Function: LLToolBar::LLToolBar()
File: /indra/newview/lltoolbar.cpp
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/lltoolbar.cpp | 7 | 
1 files changed, 5 insertions, 2 deletions
diff --git a/indra/newview/lltoolbar.cpp b/indra/newview/lltoolbar.cpp index edbaa0d45a..6df574a21a 100644 --- a/indra/newview/lltoolbar.cpp +++ b/indra/newview/lltoolbar.cpp @@ -95,9 +95,12 @@ F32	LLToolBar::sInventoryAutoOpenTime = 1.f;  //  LLToolBar::LLToolBar() -:	LLPanel() +	: LLPanel(), + +	mInventoryAutoOpen(FALSE), +	mNumUnreadIMs(0)	  #if LL_DARWIN -	, mResizeHandle(NULL) +	, mResizeHandle(NULL),  #endif // LL_DARWIN  {  	setIsChrome(TRUE);  | 
