summaryrefslogtreecommitdiff
path: root/filter/source/flash/swfdialog.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'filter/source/flash/swfdialog.cxx')
-rw-r--r--filter/source/flash/swfdialog.cxx11
1 files changed, 0 insertions, 11 deletions
diff --git a/filter/source/flash/swfdialog.cxx b/filter/source/flash/swfdialog.cxx
index d23f4de94a01..104fc60022c2 100644
--- a/filter/source/flash/swfdialog.cxx
+++ b/filter/source/flash/swfdialog.cxx
@@ -42,14 +42,12 @@ using namespace ::com::sun::star::document;
OUString SWFDialog_getImplementationName ()
- throw (RuntimeException)
{
return OUString ( SERVICE_NAME );
}
Sequence< OUString > SAL_CALL SWFDialog_getSupportedServiceNames()
- throw (RuntimeException)
{
Sequence<OUString> aRet { SERVICE_NAME };
return aRet;
@@ -57,7 +55,6 @@ Sequence< OUString > SAL_CALL SWFDialog_getSupportedServiceNames()
Reference< XInterface > SAL_CALL SWFDialog_createInstance( const Reference< XMultiServiceFactory > & rSMgr)
- throw( Exception )
{
return static_cast<cppu::OWeakObject*>(new SWFDialog( comphelper::getComponentContext(rSMgr) ));
}
@@ -76,7 +73,6 @@ SWFDialog::~SWFDialog()
Any SAL_CALL SWFDialog::queryInterface( const Type& rType )
- throw (RuntimeException, std::exception)
{
Any aReturn = OGenericUnoDialog::queryInterface( rType );
@@ -104,21 +100,18 @@ void SAL_CALL SWFDialog::release()
Sequence< sal_Int8 > SAL_CALL SWFDialog::getImplementationId()
- throw(RuntimeException, std::exception)
{
return css::uno::Sequence<sal_Int8>();
}
OUString SAL_CALL SWFDialog::getImplementationName()
- throw (RuntimeException, std::exception)
{
return SWFDialog_getImplementationName();
}
Sequence< OUString > SAL_CALL SWFDialog::getSupportedServiceNames()
- throw (RuntimeException, std::exception)
{
return SWFDialog_getSupportedServiceNames();
}
@@ -167,7 +160,6 @@ void SWFDialog::executedDialog( sal_Int16 nExecutionResult )
Reference< XPropertySetInfo > SAL_CALL SWFDialog::getPropertySetInfo()
- throw(RuntimeException, std::exception)
{
Reference< XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
return xInfo;
@@ -189,7 +181,6 @@ Reference< XPropertySetInfo > SAL_CALL SWFDialog::getPropertySetInfo()
Sequence< PropertyValue > SAL_CALL SWFDialog::getPropertyValues()
- throw ( RuntimeException, std::exception )
{
sal_Int32 i, nCount;
@@ -210,7 +201,6 @@ Sequence< PropertyValue > SAL_CALL SWFDialog::getPropertyValues()
void SAL_CALL SWFDialog::setPropertyValues( const Sequence< PropertyValue >& rProps )
- throw ( UnknownPropertyException, PropertyVetoException, IllegalArgumentException, WrappedTargetException, RuntimeException, std::exception )
{
maMediaDescriptor = rProps;
@@ -226,7 +216,6 @@ void SAL_CALL SWFDialog::setPropertyValues( const Sequence< PropertyValue >& rPr
void SAL_CALL SWFDialog::setSourceDocument( const Reference< XComponent >& xDoc )
- throw(IllegalArgumentException, RuntimeException, std::exception)
{
mxSrcDoc = xDoc;
}