diff options
author | Noel Grandin <noel@peralex.com> | 2014-10-28 10:13:11 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-10-28 10:50:17 +0200 |
commit | 8e156ef6d8a236a49303b12a66ac6cae1ccd567c (patch) | |
tree | 7eab7cf8b6320d730a1fb4f1edcda2665d921aa3 | |
parent | d61c55b4d11f4a4ffdf4fb75ba2e950de8ae2beb (diff) |
cid#738785 Uninitialized pointer field
Change-Id: I5689435a2522e5df64c3798457e4dd2355730236
-rw-r--r-- | sc/inc/fillinfo.hxx | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/sc/inc/fillinfo.hxx b/sc/inc/fillinfo.hxx index 1db76d9fb2df..2af32c1dd89a 100644 --- a/sc/inc/fillinfo.hxx +++ b/sc/inc/fillinfo.hxx @@ -115,9 +115,9 @@ struct CellInfo : boost::noncopyable ScShadowPart eHShadowPart : 4; // shadow effective for drawing ScShadowPart eVShadowPart : 4; - sal_uInt8 nClipMark; - sal_uInt16 nWidth; - sal_uInt8 nRotateDir; + sal_uInt8 nClipMark; + sal_uInt16 nWidth; + sal_uInt8 nRotateDir; bool bMarked : 1; bool bEmptyCellText : 1; @@ -132,11 +132,6 @@ struct CellInfo : boost::noncopyable bool bHideGrid : 1; // output-internal bool bEditEngine : 1; // output-internal - CellInfo(): - pColorScale(NULL), - pDataBar(NULL), - pIconSet(NULL) {} - ~CellInfo() { delete pColorScale; |