Kaydet (Commit) 7692b919 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708353 Uninitialized scalar field

Change-Id: Ic38ed3feacecb36083dfc29898292434cdbb4fe7
üst 8b219e18
......@@ -36,6 +36,11 @@ Camera3D::Camera3D(const basegfx::B3DPoint& rPos, const basegfx::B3DPoint& rLook
}
Camera3D::Camera3D()
: fResetFocalLength(0.0)
, fResetBankAngle(0.0)
, fFocalLength(0.0)
, fBankAngle(0.0)
, bAutoAdjustProjection(false)
{
basegfx::B3DPoint aVector3D(0.0 ,0.0 ,1.0);
Camera3D(aVector3D, basegfx::B3DPoint());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment