summaryrefslogtreecommitdiff
path: root/vbahelper/source/msforms/vbacontrols.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vbahelper/source/msforms/vbacontrols.cxx')
-rw-r--r--vbahelper/source/msforms/vbacontrols.cxx22
1 files changed, 10 insertions, 12 deletions
diff --git a/vbahelper/source/msforms/vbacontrols.cxx b/vbahelper/source/msforms/vbacontrols.cxx
index 2bf5e9adfb2a..3bf6a5549f29 100644
--- a/vbahelper/source/msforms/vbacontrols.cxx
+++ b/vbahelper/source/msforms/vbacontrols.cxx
@@ -408,19 +408,17 @@ uno::Any SAL_CALL ScVbaControls::Add( const uno::Any& Object, const uno::Any& St
}
}
- if ( xNewControl.is() )
- {
- UpdateCollectionIndex( lcl_controlsWrapper( mxDialog ) );
- aResult <<= xNewControl;
- aResult = createCollectionObject( aResult );
- uno::Reference< msforms::XControl > xVBAControl( aResult, uno::UNO_QUERY_THROW );
- if( fDefWidth > 0.0 )
- xVBAControl->setWidth( fDefWidth );
- if( fDefHeight > 0.0 )
- xVBAControl->setHeight( fDefHeight );
- }
- else
+ if ( !xNewControl.is() )
throw uno::RuntimeException();
+
+ UpdateCollectionIndex( lcl_controlsWrapper( mxDialog ) );
+ aResult <<= xNewControl;
+ aResult = createCollectionObject( aResult );
+ uno::Reference< msforms::XControl > xVBAControl( aResult, uno::UNO_QUERY_THROW );
+ if( fDefWidth > 0.0 )
+ xVBAControl->setWidth( fDefWidth );
+ if( fDefHeight > 0.0 )
+ xVBAControl->setHeight( fDefHeight );
}
catch (const uno::RuntimeException&)
{