Kaydet (Commit) 8c9a3e4f authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

coverity#738723: Unitialized scalar field

Change-Id: I6cd56e57024f020799c5017f9d54b1f5e5af65d1
üst b2a774a7
...@@ -1925,7 +1925,12 @@ LwpVirtualLayout* LwpLayout::GetContainerLayout() ...@@ -1925,7 +1925,12 @@ LwpVirtualLayout* LwpLayout::GetContainerLayout()
} }
LwpPlacableLayout::LwpPlacableLayout( LwpObjectHeader &objHdr, LwpSvStream* pStrm ) LwpPlacableLayout::LwpPlacableLayout( LwpObjectHeader &objHdr, LwpSvStream* pStrm )
: LwpLayout(objHdr, pStrm),m_pFont(NULL) : LwpLayout(objHdr, pStrm)
, m_nWrapType(0)
, m_nBuoyancy(0)
, m_nBaseLineOffset(0)
, m_nPageNumber(0)
, m_pFont(NULL)
{} {}
LwpPlacableLayout::~LwpPlacableLayout() LwpPlacableLayout::~LwpPlacableLayout()
......
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