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

coverity#707962 Uninitialized scalar field

Change-Id: I3620c5cbd16869d2744e5bfa812f88805a030019
üst 9cddd4dc
...@@ -167,16 +167,14 @@ bool RowModel::isMergeable( const RowModel& rModel ) const ...@@ -167,16 +167,14 @@ bool RowModel::isMergeable( const RowModel& rModel ) const
(mbCollapsed == rModel.mbCollapsed); (mbCollapsed == rModel.mbCollapsed);
} }
PageBreakModel::PageBreakModel()
: mnColRow(0)
PageBreakModel::PageBreakModel() : , mnMin(0)
mnColRow( 0 ), , mnMax(0)
mbManual( false ) , mbManual(false)
{ {
} }
HyperlinkModel::HyperlinkModel() HyperlinkModel::HyperlinkModel()
{ {
} }
......
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