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

coverity#738688 Uninitialized scalar field

Change-Id: Ia161f30e943dfc3bf4ef114f3861817f9b1acb79
üst c503ba54
......@@ -69,8 +69,11 @@
#include "lwpborderstuff.hxx"
#include "lwpmargins.hxx"
LwpCharacterBorderOverride::LwpCharacterBorderOverride() :
m_pBorderStuff(new LwpBorderStuff), m_pMargins(new LwpMargins)
LwpCharacterBorderOverride::LwpCharacterBorderOverride()
: m_pBorderStuff(new LwpBorderStuff)
, m_pMargins(new LwpMargins)
, m_nAboveWidth(0)
, m_nBelowWidth(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