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

coverity#708370 Uninitialized scalar field

Change-Id: I9496ce4f5b5233e700aac0a46794e391929d7fbc
üst cc018a90
......@@ -1074,15 +1074,15 @@ void SdrHdlColor::SetSize(const Size& rNew)
}
}
// class SdrHdlGradient
SdrHdlGradient::SdrHdlGradient(const Point& rRef1, const Point& rRef2, sal_Bool bGrad)
: SdrHdl(rRef1, bGrad ? HDL_GRAD : HDL_TRNS),
pColHdl1(NULL),
pColHdl2(NULL),
a2ndPos(rRef2),
bGradient(bGrad)
: SdrHdl(rRef1, bGrad ? HDL_GRAD : HDL_TRNS)
, pColHdl1(NULL)
, pColHdl2(NULL)
, a2ndPos(rRef2)
, bGradient(bGrad)
, bMoveSingleHandle(false)
, bMoveFirstHandle(false)
{
}
......
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