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

coverity#1158408 Uncaught exception

Change-Id: Ie0a3cfeedeb386e72749997e6a4bdf8b6c515be2
üst 98a3def9
...@@ -80,7 +80,7 @@ public: ...@@ -80,7 +80,7 @@ public:
// XViewPane // XViewPane
virtual sal_Int32 SAL_CALL getFirstVisibleColumn() throw(::com::sun::star::uno::RuntimeException); virtual sal_Int32 SAL_CALL getFirstVisibleColumn() throw(::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL setFirstVisibleColumn( sal_Int32 nFirstVisibleColumn ) virtual void SAL_CALL setFirstVisibleColumn( sal_Int32 nFirstVisibleColumn )
throw(::com::sun::star::uno::RuntimeException); throw(::com::sun::star::uno::RuntimeException, std::exception);
virtual sal_Int32 SAL_CALL getFirstVisibleRow() throw(::com::sun::star::uno::RuntimeException); virtual sal_Int32 SAL_CALL getFirstVisibleRow() throw(::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL setFirstVisibleRow( sal_Int32 nFirstVisibleRow ) virtual void SAL_CALL setFirstVisibleRow( sal_Int32 nFirstVisibleRow )
throw(::com::sun::star::uno::RuntimeException); throw(::com::sun::star::uno::RuntimeException);
......
...@@ -206,8 +206,8 @@ sal_Int32 SAL_CALL ScViewPaneBase::getFirstVisibleColumn() throw(uno::RuntimeExc ...@@ -206,8 +206,8 @@ sal_Int32 SAL_CALL ScViewPaneBase::getFirstVisibleColumn() throw(uno::RuntimeExc
return 0; return 0;
} }
void SAL_CALL ScViewPaneBase::setFirstVisibleColumn( sal_Int32 nFirstVisibleColumn ) void SAL_CALL ScViewPaneBase::setFirstVisibleColumn(sal_Int32 nFirstVisibleColumn)
throw(uno::RuntimeException) throw(uno::RuntimeException, std::exception)
{ {
SolarMutexGuard aGuard; SolarMutexGuard aGuard;
if (pViewShell) if (pViewShell)
......
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