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

coverity#1169880 Uninitialized pointer field

Change-Id: I70a9381a77b3b782c52dbcbc0b48a0e5ea387c8b
üst 65af1f30
...@@ -146,7 +146,7 @@ public: ...@@ -146,7 +146,7 @@ public:
void setRoleOfSequenceForDataLabelNumberFormatDetection( const OUString& rRole ); void setRoleOfSequenceForDataLabelNumberFormatDetection( const OUString& rRole );
//this is only tempohttps://www.google.de/search?q=minka+kelly&safe=off&tbm=isch&tbo=u&source=univ&sa=X&ei=x36_Uv6ZF9Kf7ga-rYGIAg&ved=0CK4BEIke&biw=1920&bih=1043#q=minka+kelly&safe=off&tbm=isch&tbs=isz:lrarily here for area chart: //this is only temporarily here for area chart:
::com::sun::star::drawing::PolyPolygonShape3D m_aPolyPolygonShape3D; ::com::sun::star::drawing::PolyPolygonShape3D m_aPolyPolygonShape3D;
sal_Int32 m_nPolygonIndex; sal_Int32 m_nPolygonIndex;
double m_fLogicMinX; double m_fLogicMinX;
......
...@@ -1062,6 +1062,24 @@ sal_Int32 VDataSeries::getMissingValueTreatment() const ...@@ -1062,6 +1062,24 @@ sal_Int32 VDataSeries::getMissingValueTreatment() const
} }
VDataSeries::VDataSeries() VDataSeries::VDataSeries()
: m_nPolygonIndex(0)
, m_fLogicMinX(0)
, m_fLogicMaxX(0)
, m_fLogicZPos(0)
, m_nPointCount(0)
, m_fXMeanValue(0)
, m_fYMeanValue(0)
, m_eStackingDirection(chart2::StackingDirection_NO_STACKING)
, m_nAxisIndex(0)
, m_bConnectBars(false)
, m_bGroupBarsPerAxis(false)
, m_nStartingAngle(0)
, m_nGlobalSeriesIndex(0)
, m_nCurrentAttributedPoint(0)
, m_nMissingValueTreatment(0)
, m_bAllowPercentValueInDataLabel(false)
, mpOldSeries(NULL)
, mnPercent(0)
{ {
} }
......
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