From 1f79b55bcabe2a627573e711a04d413d478c5882 Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Sun, 7 Oct 2012 17:09:36 +0200 Subject: [PATCH] Some cppcheck cleaning Change-Id: I9ce4af18d1cdbf694093309a026fd6c738590b82 --- sfx2/source/doc/docfile.cxx | 1 + sfx2/source/doc/doctemplates.cxx | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sfx2/source/doc/docfile.cxx b/sfx2/source/doc/docfile.cxx index 9c199ad53fb3..995be9cad8fe 100644 --- a/sfx2/source/doc/docfile.cxx +++ b/sfx2/source/doc/docfile.cxx @@ -325,6 +325,7 @@ SfxMedium_Impl::SfxMedium_Impl( SfxMedium* pAntiImplP ) : bIsStorage( false ), bUseInteractionHandler( true ), bAllowDefaultIntHdl( false ), + bDisposeStorage( false ), bStorageBasedOnInStream( false ), m_bSalvageMode( false ), m_bVersionsAlreadyLoaded( false ), diff --git a/sfx2/source/doc/doctemplates.cxx b/sfx2/source/doc/doctemplates.cxx index 76a4f5db6257..e1f1986ea930 100644 --- a/sfx2/source/doc/doctemplates.cxx +++ b/sfx2/source/doc/doctemplates.cxx @@ -618,12 +618,11 @@ void SfxDocTplService_Impl::getDirList() sal_Bool SfxDocTplService_Impl::needsUpdate() { OUString aPropName( PROPERTY_NEEDSUPDATE ); - sal_Bool bHasProperty = sal_False; sal_Bool bNeedsUpdate = sal_True; Any aValue; // Get the template dir list - bHasProperty = getProperty( maRootContent, aPropName, aValue ); + sal_Bool bHasProperty = getProperty( maRootContent, aPropName, aValue ); if ( bHasProperty ) aValue >>= bNeedsUpdate;