summaryrefslogtreecommitdiff
path: root/filter/source/svg/svgdialog.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'filter/source/svg/svgdialog.cxx')
-rw-r--r--filter/source/svg/svgdialog.cxx21
1 files changed, 1 insertions, 20 deletions
diff --git a/filter/source/svg/svgdialog.cxx b/filter/source/svg/svgdialog.cxx
index c10f892e312b..1564a480d24e 100644
--- a/filter/source/svg/svgdialog.cxx
+++ b/filter/source/svg/svgdialog.cxx
@@ -42,15 +42,13 @@ using namespace ::com::sun::star::view;
using namespace ::com::sun::star::document;
-// - SVGDialog functions -
-
-
OUString SVGDialog_getImplementationName ()
throw (RuntimeException)
{
return OUString ( SVG_DIALOG_IMPLEMENTATION_NAME );
}
+
Sequence< OUString > SAL_CALL SVGDialog_getSupportedServiceNames()
throw (RuntimeException)
{
@@ -59,7 +57,6 @@ Sequence< OUString > SAL_CALL SVGDialog_getSupportedServiceNames()
}
-
Reference< XInterface > SAL_CALL SVGDialog_createInstance( const Reference< XMultiServiceFactory > & rSMgr )
throw( Exception )
{
@@ -67,22 +64,17 @@ Reference< XInterface > SAL_CALL SVGDialog_createInstance( const Reference< XMul
}
-// - SVGDialog -
-
-
SVGDialog::SVGDialog( const Reference< XComponentContext > &rxContext ) :
OGenericUnoDialog( rxContext )
{
}
-
SVGDialog::~SVGDialog()
{
}
-
Any SAL_CALL SVGDialog::queryInterface( const Type& rType )
throw (RuntimeException, std::exception)
{
@@ -98,7 +90,6 @@ Any SAL_CALL SVGDialog::queryInterface( const Type& rType )
}
-
void SAL_CALL SVGDialog::acquire()
throw ()
{
@@ -106,7 +97,6 @@ void SAL_CALL SVGDialog::acquire()
}
-
void SAL_CALL SVGDialog::release()
throw ()
{
@@ -114,7 +104,6 @@ void SAL_CALL SVGDialog::release()
}
-
Sequence< sal_Int8 > SAL_CALL SVGDialog::getImplementationId()
throw(RuntimeException, std::exception)
{
@@ -122,7 +111,6 @@ Sequence< sal_Int8 > SAL_CALL SVGDialog::getImplementationId()
}
-
OUString SAL_CALL SVGDialog::getImplementationName()
throw (RuntimeException, std::exception)
{
@@ -130,7 +118,6 @@ OUString SAL_CALL SVGDialog::getImplementationName()
}
-
Sequence< OUString > SAL_CALL SVGDialog::getSupportedServiceNames()
throw (RuntimeException, std::exception)
{
@@ -138,7 +125,6 @@ Sequence< OUString > SAL_CALL SVGDialog::getSupportedServiceNames()
}
-
VclPtr<Dialog> SVGDialog::createDialog( vcl::Window* pParent )
{
if( mxSrcDoc.is() )
@@ -148,7 +134,6 @@ VclPtr<Dialog> SVGDialog::createDialog( vcl::Window* pParent )
}
-
void SVGDialog::executedDialog( sal_Int16 nExecutionResult )
{
if( nExecutionResult && m_pDialog )
@@ -158,7 +143,6 @@ void SVGDialog::executedDialog( sal_Int16 nExecutionResult )
}
-
Reference< XPropertySetInfo > SAL_CALL SVGDialog::getPropertySetInfo()
throw(RuntimeException, std::exception)
{
@@ -182,7 +166,6 @@ Reference< XPropertySetInfo > SAL_CALL SVGDialog::getPropertySetInfo()
}
-
Sequence< PropertyValue > SAL_CALL SVGDialog::getPropertyValues()
throw ( RuntimeException, std::exception )
{
@@ -206,7 +189,6 @@ Sequence< PropertyValue > SAL_CALL SVGDialog::getPropertyValues()
}
-
void SAL_CALL SVGDialog::setPropertyValues( const Sequence< PropertyValue >& rProps )
throw ( UnknownPropertyException, PropertyVetoException, IllegalArgumentException, WrappedTargetException, RuntimeException, std::exception )
{
@@ -223,7 +205,6 @@ void SAL_CALL SVGDialog::setPropertyValues( const Sequence< PropertyValue >& rPr
}
-
void SAL_CALL SVGDialog::setSourceDocument( const Reference< XComponent >& xDoc )
throw(IllegalArgumentException, RuntimeException, std::exception)
{