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

coverity#708338 Uninitialized scalar field

Change-Id: I2c4eb18e6bf140d37a10c8105922e13583dcde41
üst 4e0129e7
......@@ -166,8 +166,17 @@ class EnhancedCustomShape2d : public SfxItemSet
com::sun::star::drawing::EnhancedCustomShapeParameter aYRangeMinimum;
com::sun::star::drawing::EnhancedCustomShapeParameter aYRangeMaximum;
Handle() : bMirroredX ( false ), bMirroredY ( false ), bSwitched( false ),
nRefX( -1 ), nRefY( -1 ), nRefAngle( -1 ), nRefR( -1 ) {};
Handle()
: nFlags(0)
, bMirroredX ( false )
, bMirroredY ( false )
, bSwitched( false )
, nRefX( -1 )
, nRefY( -1 )
, nRefAngle( -1 )
, nRefR( -1 )
{
}
};
bool IsFlipVert() { return bFlipV; };
......
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