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

coverity#1169855 Uncaught exception

Change-Id: Iaf1e60f90cea22453f374986348f086d593e70fd
üst fdeba2a7
......@@ -4098,7 +4098,7 @@ ScVbaRange::setPageBreak( const uno::Any& _pagebreak) throw (uno::RuntimeExcepti
}
uno::Any SAL_CALL
ScVbaRange::getHeight() throw (uno::RuntimeException)
ScVbaRange::getHeight() throw (uno::RuntimeException, std::exception)
{
if ( m_Areas->getCount() > 1 )
{
......
......@@ -182,7 +182,8 @@ public:
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);
virtual css::uno::Any SAL_CALL getHeight()
throw (css::uno::RuntimeException, std::exception);
virtual css::uno::Any SAL_CALL getTop() throw (css::uno::RuntimeException);
virtual css::uno::Any SAL_CALL getLeft() 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