diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-07 10:06:15 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-07 10:14:51 +0100 |
commit | ed77c76c836f92ee3364fb56abe2dd343e9ed592 (patch) | |
tree | e9ee41f5cfb99b6fd4bd386cd8cddf6598d1f3d2 /sd | |
parent | bc14d3feaba27b857fcb4e5e81dcc120489b386a (diff) |
coverity#708125 Uninitialized scalar field
Change-Id: I9d97cdc9e6f4644ca773addf403d7ccf52a272e9
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/filter/html/pubdlg.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sd/source/filter/html/pubdlg.cxx b/sd/source/filter/html/pubdlg.cxx index ffbba781393e..439844a2caf8 100644 --- a/sd/source/filter/html/pubdlg.cxx +++ b/sd/source/filter/html/pubdlg.cxx @@ -136,6 +136,7 @@ public: // load Default-settings SdPublishingDesign::SdPublishingDesign() + : m_bCreated(sal_False) { m_eMode = PUBLISH_HTML; m_bContentPage = sal_True; |