Checker: UNINIT_CTOR
Function: LLAgentCamera::LLAgentCamera() File: /indra/newview/llagentcamera.cppmeow-7.2.2
parent
56dbd313a1
commit
fb08c17cdd
|
|
@ -107,6 +107,8 @@ LLAgentCamera gAgentCamera;
|
|||
// LLAgentCamera()
|
||||
//-----------------------------------------------------------------------------
|
||||
LLAgentCamera::LLAgentCamera() :
|
||||
mInitialized(false),
|
||||
|
||||
mDrawDistance( DEFAULT_FAR_PLANE ),
|
||||
|
||||
mLookAt(NULL),
|
||||
|
|
@ -219,7 +221,7 @@ void LLAgentCamera::init()
|
|||
mCameraZoomFraction = 1.f;
|
||||
mTrackFocusObject = gSavedSettings.getBOOL("TrackFocusObject");
|
||||
|
||||
mInitialized = TRUE;
|
||||
mInitialized = true;
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
|
|
|||
|
|
@ -82,7 +82,7 @@ public:
|
|||
void cleanup();
|
||||
void setAvatarObject(LLVOAvatarSelf* avatar);
|
||||
private:
|
||||
BOOL mInitialized;
|
||||
bool mInitialized;
|
||||
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Reference in New Issue