summaryrefslogtreecommitdiff
path: root/vbahelper
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-10-05 11:20:35 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-10-07 09:16:22 +0100
commitfaa63bb99c8f03091b159de594515ff380874186 (patch)
treef92f3bffa9c0f0f4cc128df77c28fa22e3f8cedd /vbahelper
parent225539ab08043b6937fdd67d9ae308ebd4104646 (diff)
CID#708571 uninitialized members
Change-Id: I786b81d0982e814a9f9f8d88cb724042de7cfd81
Diffstat (limited to 'vbahelper')
-rw-r--r--vbahelper/source/vbahelper/vbapagesetupbase.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/vbahelper/source/vbahelper/vbapagesetupbase.cxx b/vbahelper/source/vbahelper/vbapagesetupbase.cxx
index a47f59111b5b..6222de0952f7 100644
--- a/vbahelper/source/vbahelper/vbapagesetupbase.cxx
+++ b/vbahelper/source/vbahelper/vbapagesetupbase.cxx
@@ -22,7 +22,10 @@ using namespace ::com::sun::star;
using namespace ::ooo::vba;
VbaPageSetupBase::VbaPageSetupBase(const uno::Reference< XHelperInterface >& xParent,
- const uno::Reference< uno::XComponentContext >& xContext ) throw (uno::RuntimeException): VbaPageSetupBase_BASE( xParent, xContext )
+ const uno::Reference< uno::XComponentContext >& xContext ) throw (uno::RuntimeException)
+ : VbaPageSetupBase_BASE( xParent, xContext )
+ , mnOrientLandscape(0)
+ , mnOrientPortrait(0)
{
}