summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-03-03 18:23:54 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-03-03 18:23:54 -0600
commitd2eefbdb42bb1f0098c7dae0ec30d8459aacd66c (patch)
treee1ab3eba34e96546db292aa528d47bfc67e6bcee /lotuswordpro
parenta7db7c5ee26355ab5dcdc7c4bf6a46f0151228c4 (diff)
coverity#738738: Unitialized scalar field
Change-Id: I9ce08089eeafee24c98fc1b6c2799721517c039a
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwppagelayout.cxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/lotuswordpro/source/filter/lwppagelayout.cxx b/lotuswordpro/source/filter/lwppagelayout.cxx
index 1184ecf5ff8d..c9cedace9876 100644
--- a/lotuswordpro/source/filter/lwppagelayout.cxx
+++ b/lotuswordpro/source/filter/lwppagelayout.cxx
@@ -77,8 +77,12 @@ Mar 2005 Created
#include "lwpglobalmgr.hxx"
LwpPageLayout::LwpPageLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm)
- : LwpLayout(objHdr, pStrm), m_pPrinterBinName(new LwpAtomHolder),
- m_pPaperName(new LwpAtomHolder),m_pXFPageMaster(NULL)
+ : LwpLayout(objHdr, pStrm)
+ , m_pPrinterBinName(new LwpAtomHolder)
+ , m_nPrinterBin(0)
+ , m_nBdroffset(0)
+ , m_pPaperName(new LwpAtomHolder)
+ , m_pXFPageMaster(NULL)
{
}