summaryrefslogtreecommitdiff
path: root/sw/source/core/layout/dumpfilter.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/layout/dumpfilter.cxx')
-rw-r--r--sw/source/core/layout/dumpfilter.cxx8
1 files changed, 1 insertions, 7 deletions
diff --git a/sw/source/core/layout/dumpfilter.cxx b/sw/source/core/layout/dumpfilter.cxx
index e0c0649bcba6..c4eac12058da 100644
--- a/sw/source/core/layout/dumpfilter.cxx
+++ b/sw/source/core/layout/dumpfilter.cxx
@@ -76,7 +76,6 @@ namespace sw
// XFilter
sal_Bool LayoutDumpFilter::filter( const uno::Sequence< beans::PropertyValue >& aDescriptor )
- throw (uno::RuntimeException, std::exception)
{
bool bRet = false;
@@ -122,38 +121,33 @@ namespace sw
return bRet;
}
- void LayoutDumpFilter::cancel( ) throw (uno::RuntimeException, std::exception)
+ void LayoutDumpFilter::cancel( )
{
}
// XExporter
void LayoutDumpFilter::setSourceDocument( const uno::Reference< lang::XComponent >& xDoc )
- throw (lang::IllegalArgumentException, uno::RuntimeException, std::exception)
{
m_xSrcDoc = xDoc;
}
// XInitialization
void LayoutDumpFilter::initialize( const uno::Sequence< uno::Any >& )
- throw (uno::Exception, uno::RuntimeException, std::exception)
{
}
// XServiceInfo
OUString LayoutDumpFilter::getImplementationName( )
- throw (uno::RuntimeException, std::exception)
{
return OUString( "com.sun.star.comp.Writer.LayoutDump" );
}
sal_Bool LayoutDumpFilter::supportsService( const OUString& rServiceName )
- throw (uno::RuntimeException, std::exception)
{
return cppu::supportsService(this, rServiceName);
}
uno::Sequence< OUString > LayoutDumpFilter::getSupportedServiceNames()
- throw (uno::RuntimeException, std::exception)
{
uno::Sequence<OUString> aSeq { "com.sun.star.document.ExportFilter" };
return aSeq;