diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-10 12:28:08 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-10 14:43:26 +0000 |
commit | be354b64b9479dc60f96d2c2523e077c9cf8f837 (patch) | |
tree | a3785ccbbd2c6b71d1e6a381943303c8d6041e21 /sw | |
parent | 9c88256094b7aca44c0ab6234e14ea1ccd8129ce (diff) |
coverity#708528 Uninitialized scalar field
Change-Id: I7b8f4a9802419a8fdee3f1b8ceca383f5ec4bf5d
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/uibase/uno/unomod.cxx | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/sw/source/core/uibase/uno/unomod.cxx b/sw/source/core/uibase/uno/unomod.cxx index ba9293248b9a..88841c1ff637 100644 --- a/sw/source/core/uibase/uno/unomod.cxx +++ b/sw/source/core/uibase/uno/unomod.cxx @@ -551,16 +551,17 @@ Sequence< OUString > SwXPrintSettings::getSupportedServiceNames(void) throw( Run } SwXViewSettings::SwXViewSettings(sal_Bool bWebView, SwView* pVw) -: ChainableHelperNoState( lcl_createViewSettingsInfo (), &Application::GetSolarMutex() ) -, pView(pVw) -, mpViewOption ( NULL ) -, mpConstViewOption ( NULL ) -, bObjectValid(sal_True) -, bWeb(bWebView) -, eHRulerUnit( FUNIT_CM ) -, mbApplyHRulerMetric( sal_False ) -, eVRulerUnit( FUNIT_CM ) -, mbApplyVRulerMetric( sal_False ) + : ChainableHelperNoState( lcl_createViewSettingsInfo (), &Application::GetSolarMutex() ) + , pView(pVw) + , mpViewOption(NULL) + , mpConstViewOption(NULL) + , bObjectValid(sal_True) + , bWeb(bWebView) + , mbApplyZoom(false) + , eHRulerUnit(FUNIT_CM) + , mbApplyHRulerMetric(sal_False) + , eVRulerUnit(FUNIT_CM) + , mbApplyVRulerMetric(sal_False) { // This property only exists if we have a view (ie, not at the module ) if ( !pView ) |