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.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/svx/source/unodraw/unohtabl.cxx b/svx/source/unodraw/unohtabl.cxx
index de476db6c16a..ba51608ccef0 100644
--- a/svx/source/unodraw/unohtabl.cxx
+++ b/svx/source/unodraw/unohtabl.cxx
@@ -42,11 +42,11 @@ public:
virtual NameOrIndex* createItem() const throw();
// XServiceInfo
- virtual OUString SAL_CALL getImplementationName( ) throw( uno::RuntimeException );
- virtual uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw( uno::RuntimeException);
+ virtual OUString SAL_CALL getImplementationName( ) throw( uno::RuntimeException, std::exception );
+ virtual uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw( uno::RuntimeException, std::exception);
// XElementAccess
- virtual uno::Type SAL_CALL getElementType( ) throw( uno::RuntimeException);
+ virtual uno::Type SAL_CALL getElementType( ) throw( uno::RuntimeException, std::exception);
};
SvxUnoHatchTable::SvxUnoHatchTable( SdrModel* pModel ) throw()
@@ -58,13 +58,13 @@ SvxUnoHatchTable::~SvxUnoHatchTable() throw()
{
}
-OUString SAL_CALL SvxUnoHatchTable::getImplementationName() throw( uno::RuntimeException )
+OUString SAL_CALL SvxUnoHatchTable::getImplementationName() throw( uno::RuntimeException, std::exception )
{
return OUString("SvxUnoHatchTable");
}
uno::Sequence< OUString > SAL_CALL SvxUnoHatchTable::getSupportedServiceNames( )
- throw( uno::RuntimeException )
+ throw( uno::RuntimeException, std::exception )
{
uno::Sequence< OUString > aSNS( 1 );
aSNS.getArray()[0] = "com.sun.star.drawing.HatchTable";
@@ -78,7 +78,7 @@ NameOrIndex* SvxUnoHatchTable::createItem() const throw()
// XElementAccess
uno::Type SAL_CALL SvxUnoHatchTable::getElementType( )
- throw( uno::RuntimeException )
+ throw( uno::RuntimeException, std::exception )
{
return ::getCppuType((const struct drawing::Hatch*)0);
}