Some cppcheck cleaning

Change-Id: I9ce4af18d1cdbf694093309a026fd6c738590b82
This commit is contained in:
Julien Nabet 2012-10-07 17:09:36 +02:00
parent 5c02bb0f02
commit 1f79b55bca
2 changed files with 2 additions and 2 deletions

View File

@ -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 ),

View File

@ -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;