Kaydet (Commit) 2bdefe6d authored tarafından Thomas Arnhold's avatar Thomas Arnhold

warning C4706: assignment within conditional expression

Change-Id: I4295cf0a26a79848988d93df589e6e8e7d699989
üst 0bb694f7
......@@ -768,8 +768,11 @@ bool openAreaDialog( const uno::Reference<report::XShape >& _xShape,const uno::R
SAL_WNODEPRECATED_DECLARATIONS_PUSH
::std::auto_ptr<AbstractSvxAreaTabDialog> pDialog(pFact->CreateSvxAreaTabDialog( pParent,pDescriptor.get(),pModel.get(), true ));
SAL_WNODEPRECATED_DECLARATIONS_POP
if ( ( bSuccess = ( RET_OK == pDialog->Execute() ) ) )
if ( RET_OK == pDialog->Execute() )
{
bSuccess = true;
lcl_fillItemsToShape(_xShape,*pDialog->GetOutputItemSet());
}
}
}
catch(uno::Exception&)
......
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