summaryrefslogtreecommitdiff
path: root/reportdesign
diff options
context:
space:
mode:
Diffstat (limited to 'reportdesign')
-rw-r--r--reportdesign/source/ui/misc/UITools.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/reportdesign/source/ui/misc/UITools.cxx b/reportdesign/source/ui/misc/UITools.cxx
index 134de05e92b0..5e6c5888c56c 100644
--- a/reportdesign/source/ui/misc/UITools.cxx
+++ b/reportdesign/source/ui/misc/UITools.cxx
@@ -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&)