summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-10-28 10:13:11 +0200
committerNoel Grandin <noel@peralex.com>2014-10-28 10:50:17 +0200
commit8e156ef6d8a236a49303b12a66ac6cae1ccd567c (patch)
tree7eab7cf8b6320d730a1fb4f1edcda2665d921aa3 /sc
parentd61c55b4d11f4a4ffdf4fb75ba2e950de8ae2beb (diff)
cid#738785 Uninitialized pointer field
Change-Id: I5689435a2522e5df64c3798457e4dd2355730236
Diffstat (limited to 'sc')
-rw-r--r--sc/inc/fillinfo.hxx11
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;