diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-05-29 21:16:26 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-05-29 22:44:27 +0100 |
commit | b5ff87efd8b1ecf7d06b64a76ae70c7942aba91c (patch) | |
tree | 130c31bd589ef069c97a72e3fe7a0a87d81fe7d9 /sw | |
parent | 6f5a6d1668e0a0a9db9099a17bde769f128ef0ed (diff) |
coverity#1362175 Uninitialized scalar field
Change-Id: Ia2da9cc6a2e2f6c5f3f85c2ad3d95fb1adad6225
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/uibase/sidebar/PageMarginPanel.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sw/source/uibase/sidebar/PageMarginPanel.cxx b/sw/source/uibase/sidebar/PageMarginPanel.cxx index b6e5a9ed1f39..0575408c1d89 100644 --- a/sw/source/uibase/sidebar/PageMarginPanel.cxx +++ b/sw/source/uibase/sidebar/PageMarginPanel.cxx @@ -61,6 +61,10 @@ PageMarginPanel::PageMarginPanel( mpBindings(pBindings), meFUnit(), meUnit(), + mnPageLeftMargin(0), + mnPageRightMargin(0), + mnPageTopMargin(0), + mnPageBottomMargin(0), mpPageLRMarginItem( new SvxLongLRSpaceItem( 0, 0, SID_ATTR_PAGE_LRSPACE ) ), mpPageULMarginItem( new SvxLongULSpaceItem( 0, 0, SID_ATTR_PAGE_ULSPACE ) ), maSwPageLRControl(SID_ATTR_PAGE_LRSPACE, *pBindings, *this), |