summaryrefslogtreecommitdiff
path: root/svx/source/unodraw/unohtabl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/unodraw/unohtabl.cxx')
-rw-r--r--svx/source/unodraw/unohtabl.cxx10
1 files changed, 4 insertions, 6 deletions
diff --git a/svx/source/unodraw/unohtabl.cxx b/svx/source/unodraw/unohtabl.cxx
index dcfda9772a50..5ada87d34f9f 100644
--- a/svx/source/unodraw/unohtabl.cxx
+++ b/svx/source/unodraw/unohtabl.cxx
@@ -40,11 +40,11 @@ public:
virtual NameOrIndex* createItem() const throw() override;
// XServiceInfo
- virtual OUString SAL_CALL getImplementationName( ) throw( uno::RuntimeException, std::exception ) override;
- virtual uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw( uno::RuntimeException, std::exception) override;
+ virtual OUString SAL_CALL getImplementationName( ) override;
+ virtual uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) override;
// XElementAccess
- virtual uno::Type SAL_CALL getElementType( ) throw( uno::RuntimeException, std::exception) override;
+ virtual uno::Type SAL_CALL getElementType( ) override;
};
SvxUnoHatchTable::SvxUnoHatchTable( SdrModel* pModel ) throw()
@@ -52,13 +52,12 @@ SvxUnoHatchTable::SvxUnoHatchTable( SdrModel* pModel ) throw()
{
}
-OUString SAL_CALL SvxUnoHatchTable::getImplementationName() throw( uno::RuntimeException, std::exception )
+OUString SAL_CALL SvxUnoHatchTable::getImplementationName()
{
return OUString("SvxUnoHatchTable");
}
uno::Sequence< OUString > SAL_CALL SvxUnoHatchTable::getSupportedServiceNames( )
- throw( uno::RuntimeException, std::exception )
{
uno::Sequence<OUString> aSNS { "com.sun.star.drawing.HatchTable" };
return aSNS;
@@ -71,7 +70,6 @@ NameOrIndex* SvxUnoHatchTable::createItem() const throw()
// XElementAccess
uno::Type SAL_CALL SvxUnoHatchTable::getElementType( )
- throw( uno::RuntimeException, std::exception )
{
return cppu::UnoType<drawing::Hatch>::get();
}