summaryrefslogtreecommitdiff
path: root/sw/source/ui/vba/vbarow.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui/vba/vbarow.hxx')
-rw-r--r--sw/source/ui/vba/vbarow.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/source/ui/vba/vbarow.hxx b/sw/source/ui/vba/vbarow.hxx
index cc3b6aabcffe..9e1566683ca4 100644
--- a/sw/source/ui/vba/vbarow.hxx
+++ b/sw/source/ui/vba/vbarow.hxx
@@ -40,14 +40,14 @@ public:
virtual ~SwVbaRow();
// Attributes
- virtual css::uno::Any SAL_CALL getHeight() throw (css::uno::RuntimeException);
- virtual void SAL_CALL setHeight( const css::uno::Any& _height ) throw (css::uno::RuntimeException);
- virtual ::sal_Int32 SAL_CALL getHeightRule() throw (css::uno::RuntimeException);
- virtual void SAL_CALL setHeightRule( ::sal_Int32 _heightrule ) throw (css::uno::RuntimeException);
+ virtual css::uno::Any SAL_CALL getHeight() throw (css::uno::RuntimeException, std::exception);
+ virtual void SAL_CALL setHeight( const css::uno::Any& _height ) throw (css::uno::RuntimeException, std::exception);
+ virtual ::sal_Int32 SAL_CALL getHeightRule() throw (css::uno::RuntimeException, std::exception);
+ virtual void SAL_CALL setHeightRule( ::sal_Int32 _heightrule ) throw (css::uno::RuntimeException, std::exception);
// Methods
- virtual void SAL_CALL Select( ) throw (css::uno::RuntimeException);
- virtual void SAL_CALL SetHeight( float height, sal_Int32 heightrule ) throw (css::uno::RuntimeException);
+ virtual void SAL_CALL Select( ) throw (css::uno::RuntimeException, std::exception);
+ virtual void SAL_CALL SetHeight( float height, sal_Int32 heightrule ) throw (css::uno::RuntimeException, std::exception);
static void SelectRow( const css::uno::Reference< css::frame::XModel >& xModel, const css::uno::Reference< css::text::XTextTable >& xTextTable, sal_Int32 nStartRow, sal_Int32 nEndRow ) throw (css::uno::RuntimeException);