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

coverity#707723 Uninitialized scalar field

Change-Id: I137d29a05efaa4b709a362a02ca0c78bd7a3e048
üst be3df1df
......@@ -89,8 +89,11 @@ struct SvxBackgroundPara_Impl
sal_uInt16 nActPos;
SvxBackgroundPara_Impl() :
pParaBrush(NULL), pCharBrush(NULL) {}
SvxBackgroundPara_Impl()
: pParaBrush(NULL)
, pCharBrush(NULL)
, nActPos(LISTBOX_ENTRY_NOTFOUND)
{}
};
struct SvxBackgroundPage_Impl
......
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