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

coverity#708389 Uninitialized scalar field

Change-Id: If4b05a34b77cc0b6366880ad65132e801b297a62
üst d52b0640
...@@ -67,7 +67,17 @@ private: ...@@ -67,7 +67,17 @@ private:
::sal_Int32 mnRowSpan; ::sal_Int32 mnRowSpan;
::sal_Int32 mnColSpan; ::sal_Int32 mnColSpan;
Data() : mpProperties(NULL), mpOutlinerParaObject(NULL), mfValue(0) {}; Data()
: mpProperties(NULL)
, mpOutlinerParaObject(NULL)
, mnCellContentType(CellContentType_EMPTY)
, mfValue(0)
, mnError(0)
, mbMerged(false)
, mnRowSpan(0)
, mnColSpan(0)
{
}
}; };
void setDataToCell( const Data& rData ); void setDataToCell( const Data& rData );
......
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