summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-03-03 18:44:05 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-03-03 18:44:05 -0600
commit8c9a3e4fe6703a8c43e5cff113d70031f94af004 (patch)
tree8d28ea6693b9dd8c99f1d55d430c11443c0ace91 /lotuswordpro
parentb2a774a7e58b8f06b8bf88813f9dc8db529bf127 (diff)
coverity#738723: Unitialized scalar field
Change-Id: I6cd56e57024f020799c5017f9d54b1f5e5af65d1
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwplayout.cxx7
1 files changed, 6 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwplayout.cxx b/lotuswordpro/source/filter/lwplayout.cxx
index d24aeb473d14..da1f36325ba9 100644
--- a/lotuswordpro/source/filter/lwplayout.cxx
+++ b/lotuswordpro/source/filter/lwplayout.cxx
@@ -1925,7 +1925,12 @@ LwpVirtualLayout* LwpLayout::GetContainerLayout()
}
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()