Kaydet (Commit) 64126a2d authored tarafından Julien Nabet's avatar Julien Nabet

cppcheck: redundantAssignment

Change-Id: I8f29605dd11e39da6b0d9704c4801c5a798c4078
üst ae7880ea
......@@ -2723,10 +2723,8 @@ ImplSdPPTImport::ReadFormControl( SotStorageRef& rSrc1, com::sun::star::uno::Ref
extern "C" SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL ImportPPT(
SdDrawDocument* pDocument, SvStream& rDocStream, SvStorage& rStorage, SfxMedium& rMedium )
{
sal_Bool bRet = sal_False;
SdPPTImport* pImport = new SdPPTImport( pDocument, rDocStream, rStorage, rMedium );
bRet = pImport->Import();
sal_Bool bRet = pImport->Import();
delete pImport;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment