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

coverity#708575 Uninitialized scalar field

Change-Id: I8bf17ed4d0def478168311b82faffc7eed74fea4
üst 2bcd43bc
......@@ -53,8 +53,11 @@ private:
public:
PrinterColor () :
meColorspace(eInvalid)
PrinterColor()
: mnRed(0)
, mnGreen(0)
, mnBlue(0)
, meColorspace(eInvalid)
{}
PrinterColor (sal_uInt16 nRed, sal_uInt16 nGreen,
sal_uInt16 nBlue) :
......
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