Kaydet (Commit) 8e156ef6 authored tarafından Noel Grandin's avatar Noel Grandin

cid#738785 Uninitialized pointer field

Change-Id: I5689435a2522e5df64c3798457e4dd2355730236
üst d61c55b4
...@@ -115,9 +115,9 @@ struct CellInfo : boost::noncopyable ...@@ -115,9 +115,9 @@ struct CellInfo : boost::noncopyable
ScShadowPart eHShadowPart : 4; // shadow effective for drawing ScShadowPart eHShadowPart : 4; // shadow effective for drawing
ScShadowPart eVShadowPart : 4; ScShadowPart eVShadowPart : 4;
sal_uInt8 nClipMark; sal_uInt8 nClipMark;
sal_uInt16 nWidth; sal_uInt16 nWidth;
sal_uInt8 nRotateDir; sal_uInt8 nRotateDir;
bool bMarked : 1; bool bMarked : 1;
bool bEmptyCellText : 1; bool bEmptyCellText : 1;
...@@ -132,11 +132,6 @@ struct CellInfo : boost::noncopyable ...@@ -132,11 +132,6 @@ struct CellInfo : boost::noncopyable
bool bHideGrid : 1; // output-internal bool bHideGrid : 1; // output-internal
bool bEditEngine : 1; // output-internal bool bEditEngine : 1; // output-internal
CellInfo():
pColorScale(NULL),
pDataBar(NULL),
pIconSet(NULL) {}
~CellInfo() ~CellInfo()
{ {
delete pColorScale; delete pColorScale;
......
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