fix indent

Change-Id: I48552afc35c1f7cfff3562c36eca3f1cf6174077
This commit is contained in:
Caolán McNamara
2016-02-15 11:25:17 +00:00
parent 3210bc85ae
commit f3f67b770b

View File

@@ -1797,7 +1797,7 @@ void SbModule::StoreBinaryData( SvStream& rStrm, sal_uInt16 nVer )
if ( bFixup ) // save in old image format, fix up method starts if ( bFixup ) // save in old image format, fix up method starts
fixUpMethodStart( true ); fixUpMethodStart( true );
bRet = SbxObject::StoreData( rStrm ); bRet = SbxObject::StoreData( rStrm );
if( bRet ) if( bRet )
{ {
(pImage->aOUSource).clear(); (pImage->aOUSource).clear();
@@ -1805,12 +1805,12 @@ void SbModule::StoreBinaryData( SvStream& rStrm, sal_uInt16 nVer )
pImage->aName = GetName(); pImage->aName = GetName();
rStrm.WriteUChar( 1 ); rStrm.WriteUChar( 1 );
if ( nVer ) if ( nVer )
bRet = pImage->Save( rStrm ); bRet = pImage->Save( rStrm );
else else
bRet = pImage->Save( rStrm, B_LEGACYVERSION ); bRet = pImage->Save( rStrm, B_LEGACYVERSION );
if ( bFixup ) if ( bFixup )
fixUpMethodStart( false ); // restore method starts fixUpMethodStart( false ); // restore method starts
pImage->aOUSource = aOUSource; pImage->aOUSource = aOUSource;
} }