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

coverity#1158346 Uncaught exception

Change-Id: Ifd85f727dc741b2d59bfc9eebabbff24e0e69e1d
üst f1b1e732
...@@ -401,7 +401,8 @@ public: ...@@ -401,7 +401,8 @@ public:
queryEmptyCells() throw(::com::sun::star::uno::RuntimeException); queryEmptyCells() throw(::com::sun::star::uno::RuntimeException);
virtual ::com::sun::star::uno::Reference< ::com::sun::star::sheet::XSheetCellRanges > SAL_CALL virtual ::com::sun::star::uno::Reference< ::com::sun::star::sheet::XSheetCellRanges > SAL_CALL
queryContentCells( sal_Int16 nContentFlags ) queryContentCells( sal_Int16 nContentFlags )
throw(::com::sun::star::uno::RuntimeException); throw(::com::sun::star::uno::RuntimeException,
std::exception);
virtual ::com::sun::star::uno::Reference< ::com::sun::star::sheet::XSheetCellRanges > SAL_CALL virtual ::com::sun::star::uno::Reference< ::com::sun::star::sheet::XSheetCellRanges > SAL_CALL
queryFormulaCells( sal_Int32 nResultFlags ) queryFormulaCells( sal_Int32 nResultFlags )
throw(::com::sun::star::uno::RuntimeException, throw(::com::sun::star::uno::RuntimeException,
......
...@@ -3530,8 +3530,8 @@ uno::Reference<sheet::XSheetCellRanges> SAL_CALL ScCellRangesBase::queryEmptyCel ...@@ -3530,8 +3530,8 @@ uno::Reference<sheet::XSheetCellRanges> SAL_CALL ScCellRangesBase::queryEmptyCel
} }
uno::Reference<sheet::XSheetCellRanges> SAL_CALL ScCellRangesBase::queryContentCells( uno::Reference<sheet::XSheetCellRanges> SAL_CALL ScCellRangesBase::queryContentCells(
sal_Int16 nContentFlags ) sal_Int16 nContentFlags )
throw(uno::RuntimeException) throw(uno::RuntimeException, std::exception)
{ {
SolarMutexGuard aGuard; SolarMutexGuard aGuard;
if (pDocShell) if (pDocShell)
......
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