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

coverity#1158352 Uncaught exception

Change-Id: Idd0b4fae13523a0839ea2b42dce663277f586925
üst 6eddd93b
...@@ -1181,7 +1181,8 @@ public: ...@@ -1181,7 +1181,8 @@ public:
virtual void SAL_CALL hideDetail( const ::com::sun::star::table::CellRangeAddress& aRange ) virtual void SAL_CALL hideDetail( const ::com::sun::star::table::CellRangeAddress& aRange )
throw(::com::sun::star::uno::RuntimeException); throw(::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL showDetail( const ::com::sun::star::table::CellRangeAddress& aRange ) virtual void SAL_CALL showDetail( const ::com::sun::star::table::CellRangeAddress& aRange )
throw(::com::sun::star::uno::RuntimeException); throw(::com::sun::star::uno::RuntimeException,
std::exception);
virtual void SAL_CALL showLevel( sal_Int16 nLevel, virtual void SAL_CALL showLevel( sal_Int16 nLevel,
::com::sun::star::table::TableOrientation nOrientation ) ::com::sun::star::table::TableOrientation nOrientation )
throw(::com::sun::star::uno::RuntimeException); throw(::com::sun::star::uno::RuntimeException);
......
...@@ -7934,7 +7934,7 @@ void SAL_CALL ScTableSheetObj::hideDetail( const table::CellRangeAddress& rCellR ...@@ -7934,7 +7934,7 @@ void SAL_CALL ScTableSheetObj::hideDetail( const table::CellRangeAddress& rCellR
} }
void SAL_CALL ScTableSheetObj::showDetail( const table::CellRangeAddress& rCellRange ) void SAL_CALL ScTableSheetObj::showDetail( const table::CellRangeAddress& rCellRange )
throw(uno::RuntimeException) throw(uno::RuntimeException, std::exception)
{ {
SolarMutexGuard aGuard; SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell(); ScDocShell* pDocSh = GetDocShell();
......
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