Kaydet (Commit) aca27afb authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud Kaydeden (comit) Thomas Arnhold

coverity#984099: Unitialized scalar field

Change-Id: I9938ffebca054744a6a1e333df3933a3633ea8d3
Reviewed-on: https://gerrit.libreoffice.org/2318Reviewed-by: 's avatarThomas Arnhold <thomas@arnhold.org>
Tested-by: 's avatarThomas Arnhold <thomas@arnhold.org>
üst a64df1b8
......@@ -41,8 +41,12 @@ TextPortionModel::TextPortionModel( const TextFontModel& rFont, const OUString&
}
TextBox::TextBox(ShapeTypeModel& rTypeModel)
: mrTypeModel(rTypeModel),
borderDistanceSet( false )
: mrTypeModel(rTypeModel)
, borderDistanceSet( false )
, borderDistanceLeft(0)
, borderDistanceTop(0)
, borderDistanceRight(0)
, borderDistanceBottom(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