Kaydet (Commit) 1311835c authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1158306 Uncaught exception

Change-Id: I899fed4be60366d77d50940cea670c75be41856c
üst d83befd5
......@@ -3963,7 +3963,8 @@ ScVbaRange::BorderAround( const css::uno::Any& LineStyle, const css::uno::Any& W
}
uno::Any SAL_CALL
ScVbaRange::getRowHeight() throw (uno::RuntimeException)
ScVbaRange::getRowHeight()
throw (uno::RuntimeException, std::exception)
{
sal_Int32 nLen = m_Areas->getCount();
if ( nLen > 1 )
......
......@@ -178,7 +178,8 @@ public:
virtual void SAL_CALL setHidden( const css::uno::Any& _hidden ) throw (css::uno::RuntimeException);
virtual css::uno::Any SAL_CALL getColumnWidth() throw (css::uno::RuntimeException);
virtual void SAL_CALL setColumnWidth( const css::uno::Any& _columnwidth ) throw (css::uno::RuntimeException);
virtual css::uno::Any SAL_CALL getRowHeight() throw (css::uno::RuntimeException);
virtual css::uno::Any SAL_CALL getRowHeight()
throw(css::uno::RuntimeException, std::exception);
virtual void SAL_CALL setRowHeight( const css::uno::Any& _rowheight ) throw (css::uno::RuntimeException);
virtual css::uno::Any SAL_CALL getWidth() throw (css::uno::RuntimeException);
virtual css::uno::Any SAL_CALL getHeight() throw (css::uno::RuntimeException);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment