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

coverity#1187867 Uninitialized scalar field

Change-Id: Ie8477a196eb31d173f96735aedc883cc9a7697ff
üst ba9562d6
...@@ -32,10 +32,10 @@ struct ScRangeFindData ...@@ -32,10 +32,10 @@ struct ScRangeFindData
sal_uInt16 nFlags; sal_uInt16 nFlags;
sal_Int32 nSelStart; sal_Int32 nSelStart;
sal_Int32 nSelEnd; sal_Int32 nSelEnd;
ColorData nColorData;
ScRangeFindData( const ScRange& rR, sal_uInt16 nF, sal_Int32 nS, sal_Int32 nE ) : ScRangeFindData( const ScRange& rR, sal_uInt16 nF, sal_Int32 nS, sal_Int32 nE ) :
aRef(rR), nFlags(nF), nSelStart(nS), nSelEnd(nE) {} aRef(rR), nFlags(nF), nSelStart(nS), nSelEnd(nE), nColorData(0) {}
ColorData nColorData;
}; };
class ScRangeFindList class ScRangeFindList
......
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