diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2012-10-07 17:09:36 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2012-10-07 17:09:36 +0200 |
commit | 1f79b55bcabe2a627573e711a04d413d478c5882 (patch) | |
tree | 8164122caa4aa47b06a4cf2c0ffa5520c47c1662 /sfx2 | |
parent | 5c02bb0f022ae6f51ccc07452901ad45a9a243e9 (diff) |
Some cppcheck cleaning
Change-Id: I9ce4af18d1cdbf694093309a026fd6c738590b82
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/doc/docfile.cxx | 1 | ||||
-rw-r--r-- | 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; |