summaryrefslogtreecommitdiff
path: root/sc/source/ui/unoobj/cellsuno.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-01-26 12:28:58 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-01-26 12:54:43 +0000
commite57ca02849c3d87142ff5ff9099a212e72b8139c (patch)
treebcce66b27261553c308779f3e8663a269ed3a671 /sc/source/ui/unoobj/cellsuno.cxx
parent8802ebd5172ec4bc412a59d136c82b77ab452281 (diff)
Remove dynamic exception specifications
...(for now, from LIBO_INTERNAL_CODE only). See the mail thread starting at <https://lists.freedesktop.org/archives/libreoffice/2017-January/076665.html> "Dynamic Exception Specifications" for details. Most changes have been done automatically by the rewriting loplugin:dynexcspec (after enabling the rewriting mode, to be committed shortly). The way it only removes exception specs from declarations if it also sees a definition, it identified some dead declarations-w/o-definitions (that have been removed manually) and some cases where a definition appeared in multiple include files (which have also been cleaned up manually). There's also been cases of macro paramters (that were used to abstract over exception specs) that have become unused now (and been removed). Furthermore, some code needed to be cleaned up manually (avmedia/source/quicktime/ and connectivity/source/drivers/kab/), as I had no configurations available that would actually build that code. Missing @throws documentation has not been applied in such manual clean-up. Change-Id: I3408691256c9b0c12bc5332de976743626e13960 Reviewed-on: https://gerrit.libreoffice.org/33574 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sc/source/ui/unoobj/cellsuno.cxx')
-rw-r--r--sc/source/ui/unoobj/cellsuno.cxx404
1 files changed, 104 insertions, 300 deletions
diff --git a/sc/source/ui/unoobj/cellsuno.cxx b/sc/source/ui/unoobj/cellsuno.cxx
index 536e227a9d94..f387325c6faf 100644
--- a/sc/source/ui/unoobj/cellsuno.cxx
+++ b/sc/source/ui/unoobj/cellsuno.cxx
@@ -1750,7 +1750,6 @@ void ScCellRangesBase::SetCursorOnly( bool bSet )
}
uno::Any SAL_CALL ScCellRangesBase::queryInterface( const uno::Type& rType )
- throw(uno::RuntimeException, std::exception)
{
SC_QUERYINTERFACE( beans::XPropertySet )
SC_QUERYINTERFACE( beans::XMultiPropertySet )
@@ -1782,7 +1781,7 @@ void SAL_CALL ScCellRangesBase::release() throw()
OWeakObject::release();
}
-uno::Sequence<uno::Type> SAL_CALL ScCellRangesBase::getTypes() throw(uno::RuntimeException, std::exception)
+uno::Sequence<uno::Type> SAL_CALL ScCellRangesBase::getTypes()
{
static uno::Sequence<uno::Type> aTypes;
if ( aTypes.getLength() == 0 )
@@ -1807,7 +1806,6 @@ uno::Sequence<uno::Type> SAL_CALL ScCellRangesBase::getTypes() throw(uno::Runtim
}
uno::Sequence<sal_Int8> SAL_CALL ScCellRangesBase::getImplementationId()
- throw(uno::RuntimeException, std::exception)
{
return css::uno::Sequence<sal_Int8>();
}
@@ -1821,7 +1819,6 @@ void ScCellRangesBase::PaintGridRanges_Impl( )
// XSheetOperation
double SAL_CALL ScCellRangesBase::computeFunction( sheet::GeneralFunction nFunction )
- throw(uno::Exception, uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScMarkData aMark(*GetMarkData());
@@ -1841,7 +1838,7 @@ double SAL_CALL ScCellRangesBase::computeFunction( sheet::GeneralFunction nFunct
return fVal;
}
-void SAL_CALL ScCellRangesBase::clearContents( sal_Int32 nContentFlags ) throw(uno::RuntimeException, std::exception)
+void SAL_CALL ScCellRangesBase::clearContents( sal_Int32 nContentFlags )
{
SolarMutexGuard aGuard;
if ( !aRanges.empty() )
@@ -1943,7 +1940,6 @@ beans::PropertyState ScCellRangesBase::GetOnePropertyState( sal_uInt16 nItemWhic
}
beans::PropertyState SAL_CALL ScCellRangesBase::getPropertyState( const OUString& aPropertyName )
- throw(beans::UnknownPropertyException, uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
if ( aRanges.empty() )
@@ -1958,7 +1954,6 @@ beans::PropertyState SAL_CALL ScCellRangesBase::getPropertyState( const OUString
uno::Sequence<beans::PropertyState> SAL_CALL ScCellRangesBase::getPropertyStates(
const uno::Sequence<OUString>& aPropertyNames )
- throw(beans::UnknownPropertyException, uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
@@ -1977,7 +1972,6 @@ uno::Sequence<beans::PropertyState> SAL_CALL ScCellRangesBase::getPropertyStates
}
void SAL_CALL ScCellRangesBase::setPropertyToDefault( const OUString& aPropertyName )
- throw(beans::UnknownPropertyException, uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
if ( pDocShell )
@@ -2022,8 +2016,6 @@ void SAL_CALL ScCellRangesBase::setPropertyToDefault( const OUString& aPropertyN
}
uno::Any SAL_CALL ScCellRangesBase::getPropertyDefault( const OUString& aPropertyName )
- throw(beans::UnknownPropertyException, lang::WrappedTargetException,
- uno::RuntimeException, std::exception)
{
//! mit getPropertyValue zusammenfassen
@@ -2130,7 +2122,6 @@ uno::Any SAL_CALL ScCellRangesBase::getPropertyDefault( const OUString& aPropert
// XPropertySet
uno::Reference<beans::XPropertySetInfo> SAL_CALL ScCellRangesBase::getPropertySetInfo()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
static uno::Reference<beans::XPropertySetInfo> aRef(
@@ -2250,9 +2241,6 @@ static void lcl_SetCellProperty( const SfxItemPropertySimpleEntry& rEntry, const
void SAL_CALL ScCellRangesBase::setPropertyValue(
const OUString& aPropertyName, const uno::Any& aValue )
- throw(beans::UnknownPropertyException, beans::PropertyVetoException,
- lang::IllegalArgumentException, lang::WrappedTargetException,
- uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
@@ -2268,7 +2256,6 @@ void SAL_CALL ScCellRangesBase::setPropertyValue(
}
void ScCellRangesBase::SetOnePropertyValue( const SfxItemPropertySimpleEntry* pEntry, const uno::Any& aValue )
- throw(lang::IllegalArgumentException, uno::RuntimeException, std::exception)
{
if ( pEntry )
{
@@ -2466,8 +2453,6 @@ void ScCellRangesBase::SetOnePropertyValue( const SfxItemPropertySimpleEntry* pE
}
uno::Any SAL_CALL ScCellRangesBase::getPropertyValue( const OUString& aPropertyName )
- throw(beans::UnknownPropertyException, lang::WrappedTargetException,
- uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
@@ -2485,7 +2470,6 @@ uno::Any SAL_CALL ScCellRangesBase::getPropertyValue( const OUString& aPropertyN
}
void ScCellRangesBase::GetOnePropertyValue( const SfxItemPropertySimpleEntry* pEntry, uno::Any& rAny )
- throw(uno::RuntimeException, std::exception)
{
if ( pEntry )
{
@@ -2635,8 +2619,6 @@ void ScCellRangesBase::GetOnePropertyValue( const SfxItemPropertySimpleEntry* pE
void SAL_CALL ScCellRangesBase::addPropertyChangeListener( const OUString& /* aPropertyName */,
const uno::Reference<beans::XPropertyChangeListener>& /* aListener */)
- throw(beans::UnknownPropertyException,
- lang::WrappedTargetException, uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
if ( aRanges.empty() )
@@ -2647,8 +2629,6 @@ void SAL_CALL ScCellRangesBase::addPropertyChangeListener( const OUString& /* aP
void SAL_CALL ScCellRangesBase::removePropertyChangeListener( const OUString& /* aPropertyName */,
const uno::Reference<beans::XPropertyChangeListener>& /* aListener */)
- throw(beans::UnknownPropertyException,
- lang::WrappedTargetException, uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
if ( aRanges.empty() )
@@ -2659,16 +2639,12 @@ void SAL_CALL ScCellRangesBase::removePropertyChangeListener( const OUString& /*
void SAL_CALL ScCellRangesBase::addVetoableChangeListener( const OUString&,
const uno::Reference<beans::XVetoableChangeListener>&)
- throw(beans::UnknownPropertyException,
- lang::WrappedTargetException, uno::RuntimeException, std::exception)
{
OSL_FAIL("not implemented");
}
void SAL_CALL ScCellRangesBase::removeVetoableChangeListener( const OUString&,
const uno::Reference<beans::XVetoableChangeListener>&)
- throw(beans::UnknownPropertyException,
- lang::WrappedTargetException, uno::RuntimeException, std::exception)
{
OSL_FAIL("not implemented");
}
@@ -2677,10 +2653,6 @@ void SAL_CALL ScCellRangesBase::removeVetoableChangeListener( const OUString&,
void SAL_CALL ScCellRangesBase::setPropertyValues( const uno::Sequence< OUString >& aPropertyNames,
const uno::Sequence< uno::Any >& aValues )
- throw (beans::PropertyVetoException,
- lang::IllegalArgumentException,
- lang::WrappedTargetException,
- uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
@@ -2767,7 +2739,6 @@ void SAL_CALL ScCellRangesBase::setPropertyValues( const uno::Sequence< OUString
uno::Sequence<uno::Any> SAL_CALL ScCellRangesBase::getPropertyValues(
const uno::Sequence< OUString >& aPropertyNames )
- throw (uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
@@ -2785,20 +2756,17 @@ uno::Sequence<uno::Any> SAL_CALL ScCellRangesBase::getPropertyValues(
void SAL_CALL ScCellRangesBase::addPropertiesChangeListener( const uno::Sequence< OUString >& /* aPropertyNames */,
const uno::Reference< beans::XPropertiesChangeListener >& /* xListener */ )
- throw (uno::RuntimeException, std::exception)
{
OSL_FAIL("not implemented");
}
void SAL_CALL ScCellRangesBase::removePropertiesChangeListener( const uno::Reference< beans::XPropertiesChangeListener >& /* xListener */ )
- throw (uno::RuntimeException, std::exception)
{
OSL_FAIL("not implemented");
}
void SAL_CALL ScCellRangesBase::firePropertiesChangeEvent( const uno::Sequence< OUString >& /* aPropertyNames */,
const uno::Reference< beans::XPropertiesChangeListener >& /* xListener */ )
- throw (uno::RuntimeException, std::exception)
{
OSL_FAIL("not implemented");
}
@@ -2818,7 +2786,6 @@ IMPL_LINK( ScCellRangesBase, ValueListenerHdl, const SfxHint&, rHint, void )
// XTolerantMultiPropertySet
uno::Sequence< beans::SetPropertyTolerantFailed > SAL_CALL ScCellRangesBase::setPropertyValuesTolerant( const uno::Sequence< OUString >& aPropertyNames,
const uno::Sequence< uno::Any >& aValues )
- throw (lang::IllegalArgumentException, uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
@@ -2937,7 +2904,6 @@ uno::Sequence< beans::SetPropertyTolerantFailed > SAL_CALL ScCellRangesBase::set
}
uno::Sequence< beans::GetPropertyTolerantResult > SAL_CALL ScCellRangesBase::getPropertyValuesTolerant( const uno::Sequence< OUString >& aPropertyNames )
- throw (uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
@@ -2967,7 +2933,6 @@ uno::Sequence< beans::GetPropertyTolerantResult > SAL_CALL ScCellRangesBase::get
}
uno::Sequence< beans::GetDirectPropertyTolerantResult > SAL_CALL ScCellRangesBase::getDirectPropertyValuesTolerant( const uno::Sequence< OUString >& aPropertyNames )
- throw (uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
@@ -3006,7 +2971,7 @@ uno::Sequence< beans::GetDirectPropertyTolerantResult > SAL_CALL ScCellRangesBas
// XIndent
-void SAL_CALL ScCellRangesBase::decrementIndent() throw(css::uno::RuntimeException, std::exception)
+void SAL_CALL ScCellRangesBase::decrementIndent()
{
SolarMutexGuard aGuard;
if ( pDocShell && !aRanges.empty() ) // leer = nichts zu tun
@@ -3018,7 +2983,7 @@ void SAL_CALL ScCellRangesBase::decrementIndent() throw(css::uno::RuntimeExcepti
}
}
-void SAL_CALL ScCellRangesBase::incrementIndent() throw(css::uno::RuntimeException, std::exception)
+void SAL_CALL ScCellRangesBase::incrementIndent()
{
SolarMutexGuard aGuard;
if ( pDocShell && !aRanges.empty() ) // leer = nichts zu tun
@@ -3082,7 +3047,6 @@ ScMemChart* ScCellRangesBase::CreateMemChart_Impl() const
}
uno::Sequence< uno::Sequence<double> > SAL_CALL ScCellRangesBase::getData()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
std::unique_ptr<ScMemChart> pMemChart(CreateMemChart_Impl());
@@ -3143,7 +3107,6 @@ ScRangeListRef ScCellRangesBase::GetLimitedChartRanges_Impl( long nDataColumns,
}
void SAL_CALL ScCellRangesBase::setData( const uno::Sequence< uno::Sequence<double> >& aData )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
bool bDone = false;
@@ -3196,7 +3159,6 @@ void SAL_CALL ScCellRangesBase::setData( const uno::Sequence< uno::Sequence<doub
}
uno::Sequence<OUString> SAL_CALL ScCellRangesBase::getRowDescriptions()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
std::unique_ptr<ScMemChart> pMemChart(CreateMemChart_Impl());
@@ -3215,7 +3177,6 @@ uno::Sequence<OUString> SAL_CALL ScCellRangesBase::getRowDescriptions()
void SAL_CALL ScCellRangesBase::setRowDescriptions(
const uno::Sequence<OUString>& aRowDescriptions )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
bool bDone = false;
@@ -3267,7 +3228,6 @@ void SAL_CALL ScCellRangesBase::setRowDescriptions(
}
uno::Sequence<OUString> SAL_CALL ScCellRangesBase::getColumnDescriptions()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
std::unique_ptr<ScMemChart> pMemChart(CreateMemChart_Impl());
@@ -3286,7 +3246,6 @@ uno::Sequence<OUString> SAL_CALL ScCellRangesBase::getColumnDescriptions()
void SAL_CALL ScCellRangesBase::setColumnDescriptions(
const uno::Sequence<OUString>& aColumnDescriptions )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
bool bDone = false;
@@ -3361,7 +3320,6 @@ void ScCellRangesBase::ForceChartListener_Impl()
void SAL_CALL ScCellRangesBase::addChartDataChangeEventListener( const uno::Reference<
chart::XChartDataChangeEventListener >& aListener )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
if ( pDocShell && !aRanges.empty() )
@@ -3385,7 +3343,6 @@ void SAL_CALL ScCellRangesBase::addChartDataChangeEventListener( const uno::Refe
void SAL_CALL ScCellRangesBase::removeChartDataChangeEventListener( const uno::Reference<
chart::XChartDataChangeEventListener >& aListener )
- throw (uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
if ( pDocShell && !aRanges.empty() )
@@ -3396,13 +3353,13 @@ void SAL_CALL ScCellRangesBase::removeChartDataChangeEventListener( const uno::R
}
}
-double SAL_CALL ScCellRangesBase::getNotANumber() throw(css::uno::RuntimeException, std::exception)
+double SAL_CALL ScCellRangesBase::getNotANumber()
{
// im ScChartArray wird DBL_MIN verwendet, weil das Chart es so will
return DBL_MIN;
}
-sal_Bool SAL_CALL ScCellRangesBase::isNotANumber( double nNumber ) throw(uno::RuntimeException, std::exception)
+sal_Bool SAL_CALL ScCellRangesBase::isNotANumber( double nNumber )
{
// im ScChartArray wird DBL_MIN verwendet, weil das Chart es so will
return (nNumber == DBL_MIN);
@@ -3411,7 +3368,6 @@ sal_Bool SAL_CALL ScCellRangesBase::isNotANumber( double nNumber ) throw(uno::Ru
// XModifyBroadcaster
void SAL_CALL ScCellRangesBase::addModifyListener(const uno::Reference<util::XModifyListener>& aListener)
- throw (uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
if ( aRanges.empty() )
@@ -3433,7 +3389,6 @@ void SAL_CALL ScCellRangesBase::addModifyListener(const uno::Reference<util::XMo
}
void SAL_CALL ScCellRangesBase::removeModifyListener( const uno::Reference<util::XModifyListener>& aListener )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
@@ -3468,7 +3423,6 @@ void SAL_CALL ScCellRangesBase::removeModifyListener( const uno::Reference<util:
// XCellRangesQuery
uno::Reference<sheet::XSheetCellRanges> SAL_CALL ScCellRangesBase::queryVisibleCells()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
if (pDocShell)
@@ -3508,7 +3462,6 @@ uno::Reference<sheet::XSheetCellRanges> SAL_CALL ScCellRangesBase::queryVisibleC
}
uno::Reference<sheet::XSheetCellRanges> SAL_CALL ScCellRangesBase::queryEmptyCells()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
if (pDocShell)
@@ -3544,7 +3497,6 @@ uno::Reference<sheet::XSheetCellRanges> SAL_CALL ScCellRangesBase::queryEmptyCel
uno::Reference<sheet::XSheetCellRanges> SAL_CALL ScCellRangesBase::queryContentCells(
sal_Int16 nContentFlags )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
if (pDocShell)
@@ -3634,7 +3586,6 @@ uno::Reference<sheet::XSheetCellRanges> SAL_CALL ScCellRangesBase::queryContentC
uno::Reference<sheet::XSheetCellRanges> SAL_CALL ScCellRangesBase::queryFormulaCells(
sal_Int32 nResultFlags )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
if (pDocShell)
@@ -3772,21 +3723,21 @@ uno::Reference<sheet::XSheetCellRanges> ScCellRangesBase::QueryDifferences_Impl(
}
uno::Reference<sheet::XSheetCellRanges > SAL_CALL ScCellRangesBase::queryColumnDifferences(
- const table::CellAddress& aCompare ) throw(uno::RuntimeException, std::exception)
+ const table::CellAddress& aCompare )
{
SolarMutexGuard aGuard;
return QueryDifferences_Impl( aCompare, true );
}
uno::Reference<sheet::XSheetCellRanges> SAL_CALL ScCellRangesBase::queryRowDifferences(
- const table::CellAddress& aCompare ) throw(uno::RuntimeException, std::exception)
+ const table::CellAddress& aCompare )
{
SolarMutexGuard aGuard;
return QueryDifferences_Impl( aCompare, false );
}
uno::Reference<sheet::XSheetCellRanges> SAL_CALL ScCellRangesBase::queryIntersection(
- const table::CellRangeAddress& aRange ) throw(uno::RuntimeException, std::exception)
+ const table::CellRangeAddress& aRange )
{
SolarMutexGuard aGuard;
ScRange aMask( (SCCOL)aRange.StartColumn, (SCROW)aRange.StartRow, aRange.Sheet,
@@ -3811,7 +3762,7 @@ uno::Reference<sheet::XSheetCellRanges> SAL_CALL ScCellRangesBase::queryIntersec
// XFormulaQuery
uno::Reference<sheet::XSheetCellRanges> SAL_CALL ScCellRangesBase::queryPrecedents(
- sal_Bool bRecursive ) throw(uno::RuntimeException, std::exception)
+ sal_Bool bRecursive )
{
SolarMutexGuard aGuard;
if ( pDocShell )
@@ -3860,7 +3811,7 @@ uno::Reference<sheet::XSheetCellRanges> SAL_CALL ScCellRangesBase::queryPreceden
}
uno::Reference<sheet::XSheetCellRanges> SAL_CALL ScCellRangesBase::queryDependents(
- sal_Bool bRecursive ) throw(uno::RuntimeException, std::exception)
+ sal_Bool bRecursive )
{
SolarMutexGuard aGuard;
if ( pDocShell )
@@ -3921,7 +3872,6 @@ uno::Reference<sheet::XSheetCellRanges> SAL_CALL ScCellRangesBase::queryDependen
// XSearchable
uno::Reference<util::XSearchDescriptor> SAL_CALL ScCellRangesBase::createSearchDescriptor()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
return new ScCellSearchObj;
@@ -3929,8 +3879,6 @@ uno::Reference<util::XSearchDescriptor> SAL_CALL ScCellRangesBase::createSearchD
uno::Reference<container::XIndexAccess> SAL_CALL ScCellRangesBase::findAll(
const uno::Reference<util::XSearchDescriptor>& xDesc )
- throw(uno::RuntimeException,
- std::exception)
{
SolarMutexGuard aGuard;
// Wenn nichts gefunden wird, soll Null zurueckgegeben werden (?)
@@ -4016,7 +3964,6 @@ uno::Reference<uno::XInterface> ScCellRangesBase::Find_Impl(
uno::Reference<uno::XInterface> SAL_CALL ScCellRangesBase::findFirst(
const uno::Reference<util::XSearchDescriptor>& xDesc )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
return Find_Impl( xDesc, nullptr );
@@ -4025,7 +3972,6 @@ uno::Reference<uno::XInterface> SAL_CALL ScCellRangesBase::findFirst(
uno::Reference<uno::XInterface> SAL_CALL ScCellRangesBase::findNext(
const uno::Reference<uno::XInterface>& xStartAt,
const uno::Reference<util::XSearchDescriptor >& xDesc )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
if ( xStartAt.is() )
@@ -4047,15 +3993,12 @@ uno::Reference<uno::XInterface> SAL_CALL ScCellRangesBase::findNext(
// XReplaceable
uno::Reference<util::XReplaceDescriptor> SAL_CALL ScCellRangesBase::createReplaceDescriptor()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
return new ScCellSearchObj;
}
sal_Int32 SAL_CALL ScCellRangesBase::replaceAll( const uno::Reference<util::XSearchDescriptor>& xDesc )
- throw(uno::RuntimeException,
- std::exception)
{
SolarMutexGuard aGuard;
sal_Int32 nReplaced = 0;
@@ -4139,7 +4082,7 @@ sal_Int32 SAL_CALL ScCellRangesBase::replaceAll( const uno::Reference<util::XSea
// XUnoTunnel
sal_Int64 SAL_CALL ScCellRangesBase::getSomething(
- const uno::Sequence<sal_Int8 >& rId ) throw(uno::RuntimeException, std::exception)
+ const uno::Sequence<sal_Int8 >& rId )
{
if ( rId.getLength() == 16 &&
0 == memcmp( getUnoTunnelId().getConstArray(),
@@ -4194,7 +4137,6 @@ void ScCellRangesObj::RefChanged()
}
uno::Any SAL_CALL ScCellRangesObj::queryInterface( const uno::Type& rType )
- throw(uno::RuntimeException, std::exception)
{
SC_QUERYINTERFACE( sheet::XSheetCellRangeContainer )
SC_QUERYINTERFACE( sheet::XSheetCellRanges )
@@ -4218,7 +4160,7 @@ void SAL_CALL ScCellRangesObj::release() throw()
ScCellRangesBase::release();
}
-uno::Sequence<uno::Type> SAL_CALL ScCellRangesObj::getTypes() throw(uno::RuntimeException, std::exception)
+uno::Sequence<uno::Type> SAL_CALL ScCellRangesObj::getTypes()
{
static uno::Sequence<uno::Type> aTypes;
if ( aTypes.getLength() == 0 )
@@ -4240,7 +4182,6 @@ uno::Sequence<uno::Type> SAL_CALL ScCellRangesObj::getTypes() throw(uno::Runtime
}
uno::Sequence<sal_Int8> SAL_CALL ScCellRangesObj::getImplementationId()
- throw(uno::RuntimeException, std::exception)
{
return css::uno::Sequence<sal_Int8>();
}
@@ -4264,7 +4205,6 @@ ScCellRangeObj* ScCellRangesObj::GetObjectByIndex_Impl(sal_Int32 nIndex) const
}
uno::Sequence<table::CellRangeAddress> SAL_CALL ScCellRangesObj::getRangeAddresses()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -4287,7 +4227,6 @@ uno::Sequence<table::CellRangeAddress> SAL_CALL ScCellRangesObj::getRangeAddress
}
uno::Reference<container::XEnumerationAccess> SAL_CALL ScCellRangesObj::getCells()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
@@ -4304,7 +4243,6 @@ uno::Reference<container::XEnumerationAccess> SAL_CALL ScCellRangesObj::getCells
}
OUString SAL_CALL ScCellRangesObj::getRangeAddressesAsString()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
OUString aString;
@@ -4319,7 +4257,6 @@ OUString SAL_CALL ScCellRangesObj::getRangeAddressesAsString()
void SAL_CALL ScCellRangesObj::addRangeAddress( const table::CellRangeAddress& rRange,
sal_Bool bMergeRanges )
- throw(css::uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScRange aRange(static_cast<SCCOL>(rRange.StartColumn),
@@ -4340,8 +4277,6 @@ static void lcl_RemoveNamedEntry( ScNamedEntryArr_Impl& rNamedEntries, const ScR
}
void SAL_CALL ScCellRangesObj::removeRangeAddress( const table::CellRangeAddress& rRange )
- throw(css::container::NoSuchElementException,
- css::uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
const ScRangeList& rRanges = GetRangeList();
@@ -4389,7 +4324,6 @@ void SAL_CALL ScCellRangesObj::removeRangeAddress( const table::CellRangeAddress
void SAL_CALL ScCellRangesObj::addRangeAddresses( const uno::Sequence<table::CellRangeAddress >& rRanges,
sal_Bool bMergeRanges )
- throw(css::uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
sal_Int32 nCount(rRanges.getLength());
@@ -4410,8 +4344,6 @@ void SAL_CALL ScCellRangesObj::addRangeAddresses( const uno::Sequence<table::Cel
}
void SAL_CALL ScCellRangesObj::removeRangeAddresses( const uno::Sequence<table::CellRangeAddress >& rRangeSeq )
- throw(css::container::NoSuchElementException,
- css::uno::RuntimeException, std::exception)
{
// use sometimes a better/faster implementation
sal_uInt32 nCount(rRangeSeq.getLength());
@@ -4436,9 +4368,6 @@ static void lcl_RemoveNamedEntry( ScNamedEntryArr_Impl& rNamedEntries, const OUS
}
void SAL_CALL ScCellRangesObj::insertByName( const OUString& aName, const uno::Any& aElement )
- throw (lang::IllegalArgumentException, container::ElementExistException,
- lang::WrappedTargetException, uno::RuntimeException,
- std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -4564,8 +4493,6 @@ static bool lcl_FindRangeOrEntry( const ScNamedEntryArr_Impl& rNamedEntries,
}
void SAL_CALL ScCellRangesObj::removeByName( const OUString& aName )
- throw(container::NoSuchElementException,
- lang::WrappedTargetException, uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
bool bDone = false;
@@ -4629,8 +4556,6 @@ void SAL_CALL ScCellRangesObj::removeByName( const OUString& aName )
// XNameReplace
void SAL_CALL ScCellRangesObj::replaceByName( const OUString& aName, const uno::Any& aElement )
- throw(lang::IllegalArgumentException, container::NoSuchElementException,
- lang::WrappedTargetException, uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
//! zusammenfassen?
@@ -4641,8 +4566,6 @@ void SAL_CALL ScCellRangesObj::replaceByName( const OUString& aName, const uno::
// XNameAccess
uno::Any SAL_CALL ScCellRangesObj::getByName( const OUString& aName )
- throw(container::NoSuchElementException,
- lang::WrappedTargetException, uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
uno::Any aRet;
@@ -4679,7 +4602,6 @@ static bool lcl_FindEntryName( const ScNamedEntryArr_Impl& rNamedEntries,
}
uno::Sequence<OUString> SAL_CALL ScCellRangesObj::getElementNames()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
@@ -4710,7 +4632,6 @@ uno::Sequence<OUString> SAL_CALL ScCellRangesObj::getElementNames()
}
sal_Bool SAL_CALL ScCellRangesObj::hasByName( const OUString& aName )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -4723,7 +4644,6 @@ sal_Bool SAL_CALL ScCellRangesObj::hasByName( const OUString& aName )
// XEnumerationAccess
uno::Reference<container::XEnumeration> SAL_CALL ScCellRangesObj::createEnumeration()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
return new ScIndexEnumeration(this, OUString("com.sun.star.sheet.SheetCellRangesEnumeration"));
@@ -4731,7 +4651,7 @@ uno::Reference<container::XEnumeration> SAL_CALL ScCellRangesObj::createEnumerat
// XIndexAccess
-sal_Int32 SAL_CALL ScCellRangesObj::getCount() throw(uno::RuntimeException, std::exception)
+sal_Int32 SAL_CALL ScCellRangesObj::getCount()
{
SolarMutexGuard aGuard;
const ScRangeList& rRanges = GetRangeList();
@@ -4739,8 +4659,6 @@ sal_Int32 SAL_CALL ScCellRangesObj::getCount() throw(uno::RuntimeException, std:
}
uno::Any SAL_CALL ScCellRangesObj::getByIndex( sal_Int32 nIndex )
- throw(lang::IndexOutOfBoundsException,
- lang::WrappedTargetException, uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
uno::Reference<table::XCellRange> xRange(GetObjectByIndex_Impl(nIndex));
@@ -4750,13 +4668,13 @@ uno::Any SAL_CALL ScCellRangesObj::getByIndex( sal_Int32 nIndex )
throw lang::IndexOutOfBoundsException();
}
-uno::Type SAL_CALL ScCellRangesObj::getElementType() throw(uno::RuntimeException, std::exception)
+uno::Type SAL_CALL ScCellRangesObj::getElementType()
{
SolarMutexGuard aGuard;
return cppu::UnoType<table::XCellRange>::get();
}
-sal_Bool SAL_CALL ScCellRangesObj::hasElements() throw(uno::RuntimeException, std::exception)
+sal_Bool SAL_CALL ScCellRangesObj::hasElements()
{
SolarMutexGuard aGuard;
const ScRangeList& rRanges = GetRangeList();
@@ -4764,19 +4682,17 @@ sal_Bool SAL_CALL ScCellRangesObj::hasElements() throw(uno::RuntimeException, st
}
// XServiceInfo
-OUString SAL_CALL ScCellRangesObj::getImplementationName() throw(uno::RuntimeException, std::exception)
+OUString SAL_CALL ScCellRangesObj::getImplementationName()
{
return OUString( "ScCellRangesObj" );
}
sal_Bool SAL_CALL ScCellRangesObj::supportsService( const OUString& rServiceName )
- throw(uno::RuntimeException, std::exception)
{
return cppu::supportsService(this, rServiceName);
}
uno::Sequence<OUString> SAL_CALL ScCellRangesObj::getSupportedServiceNames()
- throw(uno::RuntimeException, std::exception)
{
return {SCSHEETCELLRANGES_SERVICE,
SCCELLPROPERTIES_SERVICE,
@@ -4819,7 +4735,6 @@ void ScCellRangeObj::RefChanged()
}
uno::Any SAL_CALL ScCellRangeObj::queryInterface( const uno::Type& rType )
- throw(uno::RuntimeException, std::exception)
{
SC_QUERYINTERFACE( sheet::XCellRangeAddressable )
SC_QUERYINTERFACE( table::XCellRange )
@@ -4854,7 +4769,7 @@ void SAL_CALL ScCellRangeObj::release() throw()
ScCellRangesBase::release();
}
-uno::Sequence<uno::Type> SAL_CALL ScCellRangeObj::getTypes() throw(uno::RuntimeException, std::exception)
+uno::Sequence<uno::Type> SAL_CALL ScCellRangeObj::getTypes()
{
static uno::Sequence<uno::Type> aTypes;
if ( aTypes.getLength() == 0 )
@@ -4890,7 +4805,6 @@ uno::Sequence<uno::Type> SAL_CALL ScCellRangeObj::getTypes() throw(uno::RuntimeE
}
uno::Sequence<sal_Int8> SAL_CALL ScCellRangeObj::getImplementationId()
- throw(uno::RuntimeException, std::exception)
{
return css::uno::Sequence<sal_Int8>();
}
@@ -4902,7 +4816,6 @@ uno::Sequence<sal_Int8> SAL_CALL ScCellRangeObj::getImplementationId()
uno::Reference<table::XCell> ScCellRangeObj::GetCellByPosition_Impl(
sal_Int32 nColumn, sal_Int32 nRow )
- throw(lang::IndexOutOfBoundsException, uno::RuntimeException)
{
ScDocShell* pDocSh = GetDocShell();
if (!pDocSh)
@@ -4925,7 +4838,6 @@ uno::Reference<table::XCell> ScCellRangeObj::GetCellByPosition_Impl(
uno::Reference<table::XCell> SAL_CALL ScCellRangeObj::getCellByPosition(
sal_Int32 nColumn, sal_Int32 nRow )
- throw(lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
@@ -4934,7 +4846,6 @@ uno::Reference<table::XCell> SAL_CALL ScCellRangeObj::getCellByPosition(
uno::Reference<table::XCellRange> SAL_CALL ScCellRangeObj::getCellRangeByPosition(
sal_Int32 nLeft, sal_Int32 nTop, sal_Int32 nRight, sal_Int32 nBottom )
- throw(lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
@@ -4962,13 +4873,13 @@ uno::Reference<table::XCellRange> SAL_CALL ScCellRangeObj::getCellRangeByPositio
}
uno::Reference<table::XCellRange> SAL_CALL ScCellRangeObj::getCellRangeByName(
- const OUString& aName ) throw(uno::RuntimeException, std::exception)
+ const OUString& aName )
{
return getCellRangeByName( aName, ScAddress::detailsOOOa1 );
}
uno::Reference<table::XCellRange> ScCellRangeObj::getCellRangeByName(
- const OUString& aName, const ScAddress::Details& rDetails ) throw(uno::RuntimeException)
+ const OUString& aName, const ScAddress::Details& rDetails )
{
// name refers to the whole document (with the range's table as default),
// valid only if the range is within this range
@@ -5020,7 +4931,7 @@ uno::Reference<table::XCellRange> ScCellRangeObj::getCellRangeByName(
// XColumnRowRange
-uno::Reference<table::XTableColumns> SAL_CALL ScCellRangeObj::getColumns() throw(uno::RuntimeException, std::exception)
+uno::Reference<table::XTableColumns> SAL_CALL ScCellRangeObj::getColumns()
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -5032,7 +4943,7 @@ uno::Reference<table::XTableColumns> SAL_CALL ScCellRangeObj::getColumns() throw
return nullptr;
}
-uno::Reference<table::XTableRows> SAL_CALL ScCellRangeObj::getRows() throw(uno::RuntimeException, std::exception)
+uno::Reference<table::XTableRows> SAL_CALL ScCellRangeObj::getRows()
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -5046,7 +4957,7 @@ uno::Reference<table::XTableRows> SAL_CALL ScCellRangeObj::getRows() throw(uno::
// XAddressableCellRange
-table::CellRangeAddress SAL_CALL ScCellRangeObj::getRangeAddress() throw(uno::RuntimeException, std::exception)
+table::CellRangeAddress SAL_CALL ScCellRangeObj::getRangeAddress()
{
SolarMutexGuard aGuard;
table::CellRangeAddress aRet;
@@ -5057,7 +4968,6 @@ table::CellRangeAddress SAL_CALL ScCellRangeObj::getRangeAddress() throw(uno::Ru
// XSheetCellRange
uno::Reference<sheet::XSpreadsheet> SAL_CALL ScCellRangeObj::getSpreadsheet()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -5070,7 +4980,7 @@ uno::Reference<sheet::XSpreadsheet> SAL_CALL ScCellRangeObj::getSpreadsheet()
// XArrayFormulaRange
-OUString SAL_CALL ScCellRangeObj::getArrayFormula() throw(uno::RuntimeException, std::exception)
+OUString SAL_CALL ScCellRangeObj::getArrayFormula()
{
SolarMutexGuard aGuard;
@@ -5104,7 +5014,6 @@ OUString SAL_CALL ScCellRangeObj::getArrayFormula() throw(uno::RuntimeException,
void ScCellRangeObj::SetArrayFormula_Impl(const OUString& rFormula,
const OUString& rFormulaNmsp, const formula::FormulaGrammar::Grammar eGrammar)
- throw (uno::RuntimeException, std::exception)
{
ScDocShell* pDocSh = GetDocShell();
if (pDocSh)
@@ -5131,7 +5040,6 @@ void ScCellRangeObj::SetArrayFormula_Impl(const OUString& rFormula,
}
void SAL_CALL ScCellRangeObj::setArrayFormula( const OUString& aFormula )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
// GRAM_API for API compatibility.
@@ -5140,7 +5048,6 @@ void SAL_CALL ScCellRangeObj::setArrayFormula( const OUString& aFormula )
// XArrayFormulaTokens
uno::Sequence<sheet::FormulaToken> SAL_CALL ScCellRangeObj::getArrayTokens()
- throw (uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
@@ -5174,7 +5081,7 @@ uno::Sequence<sheet::FormulaToken> SAL_CALL ScCellRangeObj::getArrayTokens()
return aSequence;
}
-void SAL_CALL ScCellRangeObj::setArrayTokens( const uno::Sequence<sheet::FormulaToken>& rTokens ) throw(uno::RuntimeException, std::exception)
+void SAL_CALL ScCellRangeObj::setArrayTokens( const uno::Sequence<sheet::FormulaToken>& rTokens )
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -5210,7 +5117,6 @@ void SAL_CALL ScCellRangeObj::setArrayTokens( const uno::Sequence<sheet::Formula
// XCellRangeData
uno::Sequence< uno::Sequence<uno::Any> > SAL_CALL ScCellRangeObj::getDataArray()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
@@ -5238,7 +5144,6 @@ uno::Sequence< uno::Sequence<uno::Any> > SAL_CALL ScCellRangeObj::getDataArray()
void SAL_CALL ScCellRangeObj::setDataArray(
const uno::Sequence< uno::Sequence<uno::Any> >& aArray )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
@@ -5257,7 +5162,6 @@ void SAL_CALL ScCellRangeObj::setDataArray(
// XCellRangeFormula
uno::Sequence< uno::Sequence<OUString> > SAL_CALL ScCellRangeObj::getFormulaArray()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
@@ -5299,7 +5203,6 @@ uno::Sequence< uno::Sequence<OUString> > SAL_CALL ScCellRangeObj::getFormulaArra
void SAL_CALL ScCellRangeObj::setFormulaArray(
const uno::Sequence< uno::Sequence<OUString> >& aArray )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
@@ -5323,7 +5226,6 @@ void SAL_CALL ScCellRangeObj::setTableOperation( const table::CellRangeAddress&
sheet::TableOperationMode nMode,
const table::CellAddress& aColumnCell,
const table::CellAddress& aRowCell )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -5366,7 +5268,7 @@ void SAL_CALL ScCellRangeObj::setTableOperation( const table::CellRangeAddress&
// XMergeable
-void SAL_CALL ScCellRangeObj::merge( sal_Bool bMerge ) throw(uno::RuntimeException, std::exception)
+void SAL_CALL ScCellRangeObj::merge( sal_Bool bMerge )
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -5385,7 +5287,7 @@ void SAL_CALL ScCellRangeObj::merge( sal_Bool bMerge ) throw(uno::RuntimeExcepti
}
}
-sal_Bool SAL_CALL ScCellRangeObj::getIsMerged() throw(uno::RuntimeException, std::exception)
+sal_Bool SAL_CALL ScCellRangeObj::getIsMerged()
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -5396,7 +5298,7 @@ sal_Bool SAL_CALL ScCellRangeObj::getIsMerged() throw(uno::RuntimeException, std
void SAL_CALL ScCellRangeObj::fillSeries( sheet::FillDirection nFillDirection,
sheet::FillMode nFillMode, sheet::FillDateMode nFillDateMode,
- double fStep, double fEndValue ) throw(uno::RuntimeException, std::exception)
+ double fStep, double fEndValue )
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -5471,7 +5373,7 @@ void SAL_CALL ScCellRangeObj::fillSeries( sheet::FillDirection nFillDirection,
}
void SAL_CALL ScCellRangeObj::fillAuto( sheet::FillDirection nFillDirection,
- sal_Int32 nSourceCount ) throw(uno::RuntimeException, std::exception)
+ sal_Int32 nSourceCount )
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -5517,7 +5419,6 @@ void SAL_CALL ScCellRangeObj::fillAuto( sheet::FillDirection nFillDirection,
// XAutoFormattable
void SAL_CALL ScCellRangeObj::autoFormat( const OUString& aName )
- throw(lang::IllegalArgumentException, uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -5539,7 +5440,6 @@ void SAL_CALL ScCellRangeObj::autoFormat( const OUString& aName )
// XSortable
uno::Sequence<beans::PropertyValue> SAL_CALL ScCellRangeObj::createSortDescriptor()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScSortParam aParam;
@@ -5570,7 +5470,6 @@ uno::Sequence<beans::PropertyValue> SAL_CALL ScCellRangeObj::createSortDescripto
}
void SAL_CALL ScCellRangeObj::sort( const uno::Sequence<beans::PropertyValue>& aDescriptor )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -5625,7 +5524,7 @@ void SAL_CALL ScCellRangeObj::sort( const uno::Sequence<beans::PropertyValue>& a
// XFilterable
uno::Reference<sheet::XSheetFilterDescriptor> SAL_CALL ScCellRangeObj::createFilterDescriptor(
- sal_Bool bEmpty ) throw(uno::RuntimeException, std::exception)
+ sal_Bool bEmpty )
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -5658,7 +5557,6 @@ uno::Reference<sheet::XSheetFilterDescriptor> SAL_CALL ScCellRangeObj::createFil
}
void SAL_CALL ScCellRangeObj::filter( const uno::Reference<sheet::XSheetFilterDescriptor>& xDescriptor )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
@@ -5736,7 +5634,6 @@ void SAL_CALL ScCellRangeObj::filter( const uno::Reference<sheet::XSheetFilterDe
uno::Reference<sheet::XSheetFilterDescriptor> SAL_CALL ScCellRangeObj::createFilterDescriptorByObject(
const uno::Reference<sheet::XSheetFilterable>& xObject )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
@@ -5798,7 +5695,7 @@ uno::Reference<sheet::XSheetFilterDescriptor> SAL_CALL ScCellRangeObj::createFil
// XSubTotalSource
uno::Reference<sheet::XSubTotalDescriptor> SAL_CALL ScCellRangeObj::createSubTotalDescriptor(
- sal_Bool bEmpty ) throw(uno::RuntimeException, std::exception)
+ sal_Bool bEmpty )
{
SolarMutexGuard aGuard;
ScSubTotalDescriptor* pNew = new ScSubTotalDescriptor;
@@ -5835,7 +5732,6 @@ uno::Reference<sheet::XSubTotalDescriptor> SAL_CALL ScCellRangeObj::createSubTot
void SAL_CALL ScCellRangeObj::applySubTotals(
const uno::Reference<sheet::XSubTotalDescriptor>& xDescriptor,
sal_Bool bReplace)
- throw (uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
@@ -5877,7 +5773,7 @@ void SAL_CALL ScCellRangeObj::applySubTotals(
}
}
-void SAL_CALL ScCellRangeObj::removeSubTotals() throw(uno::RuntimeException, std::exception)
+void SAL_CALL ScCellRangeObj::removeSubTotals()
{
SolarMutexGuard aGuard;
@@ -5905,7 +5801,6 @@ void SAL_CALL ScCellRangeObj::removeSubTotals() throw(uno::RuntimeException, std
}
uno::Sequence<beans::PropertyValue> SAL_CALL ScCellRangeObj::createImportDescriptor( sal_Bool bEmpty )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScImportParam aParam;
@@ -5924,7 +5819,6 @@ uno::Sequence<beans::PropertyValue> SAL_CALL ScCellRangeObj::createImportDescrip
}
void SAL_CALL ScCellRangeObj::doImport( const uno::Sequence<beans::PropertyValue>& aDescriptor )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -5951,7 +5845,6 @@ void SAL_CALL ScCellRangeObj::doImport( const uno::Sequence<beans::PropertyValue
// XCellFormatRangesSupplier
uno::Reference<container::XIndexAccess> SAL_CALL ScCellRangeObj::getCellFormatRanges()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -5963,7 +5856,6 @@ uno::Reference<container::XIndexAccess> SAL_CALL ScCellRangeObj::getCellFormatRa
// XUniqueCellFormatRangesSupplier
uno::Reference<container::XIndexAccess> SAL_CALL ScCellRangeObj::getUniqueCellFormatRanges()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -5975,7 +5867,6 @@ uno::Reference<container::XIndexAccess> SAL_CALL ScCellRangeObj::getUniqueCellFo
// XPropertySet erweitert fuer Range-Properties
uno::Reference<beans::XPropertySetInfo> SAL_CALL ScCellRangeObj::getPropertySetInfo()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
static uno::Reference<beans::XPropertySetInfo> aRef(
@@ -5984,7 +5875,6 @@ uno::Reference<beans::XPropertySetInfo> SAL_CALL ScCellRangeObj::getPropertySetI
}
void ScCellRangeObj::SetOnePropertyValue( const SfxItemPropertySimpleEntry* pEntry, const uno::Any& aValue )
- throw(lang::IllegalArgumentException, uno::RuntimeException, std::exception)
{
// Range has only Position and Size in addition to ScCellRangesBase, both are ReadOnly
// -> nothing to do here
@@ -5993,7 +5883,6 @@ void ScCellRangeObj::SetOnePropertyValue( const SfxItemPropertySimpleEntry* pEnt
}
void ScCellRangeObj::GetOnePropertyValue( const SfxItemPropertySimpleEntry* pEntry, uno::Any& rAny )
- throw(uno::RuntimeException, std::exception)
{
if ( pEntry )
{
@@ -6036,19 +5925,17 @@ const SfxItemPropertyMap& ScCellRangeObj::GetItemPropertyMap()
// XServiceInfo
-OUString SAL_CALL ScCellRangeObj::getImplementationName() throw(uno::RuntimeException, std::exception)
+OUString SAL_CALL ScCellRangeObj::getImplementationName()
{
return OUString( "ScCellRangeObj" );
}
sal_Bool SAL_CALL ScCellRangeObj::supportsService( const OUString& rServiceName )
- throw(uno::RuntimeException, std::exception)
{
return cppu::supportsService(this, rServiceName);
}
uno::Sequence<OUString> SAL_CALL ScCellRangeObj::getSupportedServiceNames()
- throw(uno::RuntimeException, std::exception)
{
return {SCSHEETCELLRANGE_SERVICE,
SCCELLRANGE_SERVICE,
@@ -6110,7 +5997,7 @@ void ScCellObj::RefChanged()
}
}
-uno::Any SAL_CALL ScCellObj::queryInterface( const uno::Type& rType ) throw(uno::RuntimeException, std::exception)
+uno::Any SAL_CALL ScCellObj::queryInterface( const uno::Type& rType )
{
SC_QUERYINTERFACE( table::XCell )
SC_QUERYINTERFACE( table::XCell2 )
@@ -6138,7 +6025,7 @@ void SAL_CALL ScCellObj::release() throw()
ScCellRangeObj::release();
}
-uno::Sequence<uno::Type> SAL_CALL ScCellObj::getTypes() throw(uno::RuntimeException, std::exception)
+uno::Sequence<uno::Type> SAL_CALL ScCellObj::getTypes()
{
static uno::Sequence<uno::Type> aTypes;
if ( aTypes.getLength() == 0 )
@@ -6165,7 +6052,7 @@ uno::Sequence<uno::Type> SAL_CALL ScCellObj::getTypes() throw(uno::RuntimeExcept
return aTypes;
}
-uno::Sequence<sal_Int8> SAL_CALL ScCellObj::getImplementationId() throw(uno::RuntimeException, std::exception)
+uno::Sequence<sal_Int8> SAL_CALL ScCellObj::getImplementationId()
{
return css::uno::Sequence<sal_Int8>();
}
@@ -6283,7 +6170,6 @@ void ScCellObj::InputEnglishString( const OUString& rText )
// XText
uno::Reference<text::XTextCursor> SAL_CALL ScCellObj::createTextCursor()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
return new ScCellTextCursor( *this );
@@ -6291,7 +6177,6 @@ uno::Reference<text::XTextCursor> SAL_CALL ScCellObj::createTextCursor()
uno::Reference<text::XTextCursor> SAL_CALL ScCellObj::createTextCursorByRange(
const uno::Reference<text::XTextRange>& aTextPosition )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
SvxUnoTextCursor* pCursor = new ScCellTextCursor( *this );
@@ -6312,13 +6197,13 @@ uno::Reference<text::XTextCursor> SAL_CALL ScCellObj::createTextCursorByRange(
return xCursor;
}
-OUString SAL_CALL ScCellObj::getString() throw(uno::RuntimeException, std::exception)
+OUString SAL_CALL ScCellObj::getString()
{
SolarMutexGuard aGuard;
return GetOutputString_Impl();
}
-void SAL_CALL ScCellObj::setString( const OUString& aText ) throw(uno::RuntimeException, std::exception)
+void SAL_CALL ScCellObj::setString( const OUString& aText )
{
SolarMutexGuard aGuard;
SetString_Impl(aText, false, false); // immer Text
@@ -6330,7 +6215,6 @@ void SAL_CALL ScCellObj::setString( const OUString& aText ) throw(uno::RuntimeEx
void SAL_CALL ScCellObj::insertString( const uno::Reference<text::XTextRange>& xRange,
const OUString& aString, sal_Bool bAbsorb )
- throw(uno::RuntimeException, std::exception)
{
// special handling for ScCellTextCursor is no longer needed,
// SvxUnoText::insertString checks for SvxUnoTextRangeBase instead of SvxUnoTextRange
@@ -6341,7 +6225,6 @@ void SAL_CALL ScCellObj::insertString( const uno::Reference<text::XTextRange>& x
void SAL_CALL ScCellObj::insertControlCharacter( const uno::Reference<text::XTextRange>& xRange,
sal_Int16 nControlCharacter, sal_Bool bAbsorb )
- throw(lang::IllegalArgumentException, uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
GetUnoText().insertControlCharacter(xRange, nControlCharacter, bAbsorb);
@@ -6350,7 +6233,6 @@ void SAL_CALL ScCellObj::insertControlCharacter( const uno::Reference<text::XTex
void SAL_CALL ScCellObj::insertTextContent( const uno::Reference<text::XTextRange >& xRange,
const uno::Reference<text::XTextContent >& xContent,
sal_Bool bAbsorb )
- throw(lang::IllegalArgumentException, uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -6402,7 +6284,6 @@ void SAL_CALL ScCellObj::insertTextContent( const uno::Reference<text::XTextRang
}
void SAL_CALL ScCellObj::removeTextContent( const uno::Reference<text::XTextContent>& xContent )
- throw(container::NoSuchElementException, uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
if ( xContent.is() )
@@ -6418,38 +6299,37 @@ void SAL_CALL ScCellObj::removeTextContent( const uno::Reference<text::XTextCont
GetUnoText().removeTextContent(xContent);
}
-uno::Reference<text::XText> SAL_CALL ScCellObj::getText() throw(uno::RuntimeException, std::exception)
+uno::Reference<text::XText> SAL_CALL ScCellObj::getText()
{
SolarMutexGuard aGuard;
return this;
}
-uno::Reference<text::XTextRange> SAL_CALL ScCellObj::getStart() throw(uno::RuntimeException, std::exception)
+uno::Reference<text::XTextRange> SAL_CALL ScCellObj::getStart()
{
SolarMutexGuard aGuard;
return GetUnoText().getStart();
}
-uno::Reference<text::XTextRange> SAL_CALL ScCellObj::getEnd() throw(uno::RuntimeException, std::exception)
+uno::Reference<text::XTextRange> SAL_CALL ScCellObj::getEnd()
{
SolarMutexGuard aGuard;
return GetUnoText().getEnd();
}
uno::Reference<container::XEnumeration> SAL_CALL ScCellObj::createEnumeration()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
return GetUnoText().createEnumeration();
}
-uno::Type SAL_CALL ScCellObj::getElementType() throw(uno::RuntimeException, std::exception)
+uno::Type SAL_CALL ScCellObj::getElementType()
{
SolarMutexGuard aGuard;
return GetUnoText().getElementType();
}
-sal_Bool SAL_CALL ScCellObj::hasElements() throw(uno::RuntimeException, std::exception)
+sal_Bool SAL_CALL ScCellObj::hasElements()
{
SolarMutexGuard aGuard;
return GetUnoText().hasElements();
@@ -6457,31 +6337,31 @@ sal_Bool SAL_CALL ScCellObj::hasElements() throw(uno::RuntimeException, std::exc
// XCell
-OUString SAL_CALL ScCellObj::getFormula() throw(uno::RuntimeException, std::exception)
+OUString SAL_CALL ScCellObj::getFormula()
{
SolarMutexGuard aGuard;
return GetInputString_Impl( true /* English */ );
}
-void SAL_CALL ScCellObj::setFormula( const OUString& aFormula ) throw(uno::RuntimeException, std::exception)
+void SAL_CALL ScCellObj::setFormula( const OUString& aFormula )
{
SolarMutexGuard aGuard;
SetString_Impl(aFormula, true, true); // Interpret as English
}
-double SAL_CALL ScCellObj::getValue() throw(uno::RuntimeException, std::exception)
+double SAL_CALL ScCellObj::getValue()
{
SolarMutexGuard aGuard;
return GetValue_Impl();
}
-void SAL_CALL ScCellObj::setValue( double nValue ) throw(uno::RuntimeException, std::exception)
+void SAL_CALL ScCellObj::setValue( double nValue )
{
SolarMutexGuard aGuard;
SetValue_Impl(nValue);
}
-void SAL_CALL ScCellObj::setFormulaString( const OUString& aFormula) throw(uno::RuntimeException, std::exception)
+void SAL_CALL ScCellObj::setFormulaString( const OUString& aFormula)
{
SolarMutexGuard aGuard;
ScDocShell *pDocSh = GetDocShell();
@@ -6492,7 +6372,7 @@ void SAL_CALL ScCellObj::setFormulaString( const OUString& aFormula) throw(uno::
pDocSh->GetDocFunc().SetFormulaCell(aCellPos, pCell, false);
}
}
-void SAL_CALL ScCellObj::setFormulaResult( double nValue ) throw(uno::RuntimeException, std::exception)
+void SAL_CALL ScCellObj::setFormulaResult( double nValue )
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -6509,7 +6389,7 @@ void SAL_CALL ScCellObj::setFormulaResult( double nValue ) throw(uno::RuntimeExc
}
}
-table::CellContentType SAL_CALL ScCellObj::getType() throw(uno::RuntimeException, std::exception)
+table::CellContentType SAL_CALL ScCellObj::getType()
{
SolarMutexGuard aGuard;
table::CellContentType eRet = table::CellContentType_EMPTY;
@@ -6556,7 +6436,7 @@ table::CellContentType ScCellObj::GetResultType_Impl()
return getType(); // wenn keine Formel
}
-sal_Int32 SAL_CALL ScCellObj::getError() throw(uno::RuntimeException, std::exception)
+sal_Int32 SAL_CALL ScCellObj::getError()
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -6577,7 +6457,6 @@ sal_Int32 SAL_CALL ScCellObj::getError() throw(uno::RuntimeException, std::excep
// XFormulaTokens
uno::Sequence<sheet::FormulaToken> SAL_CALL ScCellObj::getTokens()
- throw (uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
uno::Sequence<sheet::FormulaToken> aSequence;
@@ -6596,7 +6475,7 @@ uno::Sequence<sheet::FormulaToken> SAL_CALL ScCellObj::getTokens()
return aSequence;
}
-void SAL_CALL ScCellObj::setTokens( const uno::Sequence<sheet::FormulaToken>& rTokens ) throw(uno::RuntimeException, std::exception)
+void SAL_CALL ScCellObj::setTokens( const uno::Sequence<sheet::FormulaToken>& rTokens )
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -6613,7 +6492,7 @@ void SAL_CALL ScCellObj::setTokens( const uno::Sequence<sheet::FormulaToken>& rT
// XCellAddressable
-table::CellAddress SAL_CALL ScCellObj::getCellAddress() throw(uno::RuntimeException, std::exception)
+table::CellAddress SAL_CALL ScCellObj::getCellAddress()
{
SolarMutexGuard aGuard;
table::CellAddress aAdr;
@@ -6626,7 +6505,6 @@ table::CellAddress SAL_CALL ScCellObj::getCellAddress() throw(uno::RuntimeExcept
// XSheetAnnotationAnchor
uno::Reference<sheet::XSheetAnnotation> SAL_CALL ScCellObj::getAnnotation()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -6640,7 +6518,6 @@ uno::Reference<sheet::XSheetAnnotation> SAL_CALL ScCellObj::getAnnotation()
// XFieldTypesSupplier
uno::Reference<container::XEnumerationAccess> SAL_CALL ScCellObj::getTextFields()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -6654,7 +6531,6 @@ uno::Reference<container::XEnumerationAccess> SAL_CALL ScCellObj::getTextFields(
}
uno::Reference<container::XNameAccess> SAL_CALL ScCellObj::getTextFieldMasters()
- throw(uno::RuntimeException, std::exception)
{
// sowas gibts nicht im Calc (?)
return nullptr;
@@ -6663,7 +6539,6 @@ uno::Reference<container::XNameAccess> SAL_CALL ScCellObj::getTextFieldMasters()
// XPropertySet erweitert fuer Zell-Properties
uno::Reference<beans::XPropertySetInfo> SAL_CALL ScCellObj::getPropertySetInfo()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
static uno::Reference<beans::XPropertySetInfo> aRef(
@@ -6672,7 +6547,6 @@ uno::Reference<beans::XPropertySetInfo> SAL_CALL ScCellObj::getPropertySetInfo()
}
void ScCellObj::SetOnePropertyValue( const SfxItemPropertySimpleEntry* pEntry, const uno::Any& aValue )
- throw(lang::IllegalArgumentException, uno::RuntimeException, std::exception)
{
if ( pEntry )
{
@@ -6694,7 +6568,6 @@ void ScCellObj::SetOnePropertyValue( const SfxItemPropertySimpleEntry* pEntry, c
}
void ScCellObj::GetOnePropertyValue( const SfxItemPropertySimpleEntry* pEntry, uno::Any& rAny )
- throw(uno::RuntimeException, std::exception)
{
if ( pEntry )
{
@@ -6720,19 +6593,17 @@ const SfxItemPropertyMap& ScCellObj::GetItemPropertyMap()
// XServiceInfo
-OUString SAL_CALL ScCellObj::getImplementationName() throw(uno::RuntimeException, std::exception)
+OUString SAL_CALL ScCellObj::getImplementationName()
{
return OUString( "ScCellObj" );
}
sal_Bool SAL_CALL ScCellObj::supportsService( const OUString& rServiceName )
- throw(uno::RuntimeException, std::exception)
{
return cppu::supportsService(this, rServiceName);
}
uno::Sequence<OUString> SAL_CALL ScCellObj::getSupportedServiceNames()
- throw(uno::RuntimeException, std::exception)
{
return {SCSHEETCELL_SERVICE,
SCCELL_SERVICE,
@@ -6745,13 +6616,13 @@ uno::Sequence<OUString> SAL_CALL ScCellObj::getSupportedServiceNames()
// XActionLockable
-sal_Bool SAL_CALL ScCellObj::isActionLocked() throw(uno::RuntimeException, std::exception)
+sal_Bool SAL_CALL ScCellObj::isActionLocked()
{
SolarMutexGuard aGuard;
return nActionLockCount != 0;
}
-void SAL_CALL ScCellObj::addActionLock() throw(uno::RuntimeException, std::exception)
+void SAL_CALL ScCellObj::addActionLock()
{
SolarMutexGuard aGuard;
if (!nActionLockCount)
@@ -6767,7 +6638,7 @@ void SAL_CALL ScCellObj::addActionLock() throw(uno::RuntimeException, std::excep
nActionLockCount++;
}
-void SAL_CALL ScCellObj::removeActionLock() throw(uno::RuntimeException, std::exception)
+void SAL_CALL ScCellObj::removeActionLock()
{
SolarMutexGuard aGuard;
if (nActionLockCount > 0)
@@ -6790,7 +6661,7 @@ void SAL_CALL ScCellObj::removeActionLock() throw(uno::RuntimeException, std::ex
}
}
-void SAL_CALL ScCellObj::setActionLocks( sal_Int16 nLock ) throw(uno::RuntimeException, std::exception)
+void SAL_CALL ScCellObj::setActionLocks( sal_Int16 nLock )
{
SolarMutexGuard aGuard;
if (mxUnoText.is())
@@ -6807,7 +6678,7 @@ void SAL_CALL ScCellObj::setActionLocks( sal_Int16 nLock ) throw(uno::RuntimeExc
nActionLockCount = nLock;
}
-sal_Int16 SAL_CALL ScCellObj::resetActionLocks() throw(uno::RuntimeException, std::exception)
+sal_Int16 SAL_CALL ScCellObj::resetActionLocks()
{
SolarMutexGuard aGuard;
sal_uInt16 nRet(nActionLockCount);
@@ -6841,7 +6712,7 @@ void ScTableSheetObj::InitInsertSheet(ScDocShell* pDocSh, SCTAB nTab)
InitInsertRange( pDocSh, ScRange(0,0,nTab, MAXCOL,MAXROW,nTab) );
}
-uno::Any SAL_CALL ScTableSheetObj::queryInterface( const uno::Type& rType ) throw(uno::RuntimeException, std::exception)
+uno::Any SAL_CALL ScTableSheetObj::queryInterface( const uno::Type& rType )
{
SC_QUERYINTERFACE( sheet::XSpreadsheet )
SC_QUERYINTERFACE( container::XNamed )
@@ -6875,7 +6746,7 @@ void SAL_CALL ScTableSheetObj::release() throw()
ScCellRangeObj::release();
}
-uno::Sequence<uno::Type> SAL_CALL ScTableSheetObj::getTypes() throw(uno::RuntimeException, std::exception)
+uno::Sequence<uno::Type> SAL_CALL ScTableSheetObj::getTypes()
{
static uno::Sequence<uno::Type> aTypes;
if ( aTypes.getLength() == 0 )
@@ -6911,7 +6782,7 @@ uno::Sequence<uno::Type> SAL_CALL ScTableSheetObj::getTypes() throw(uno::Runtime
return aTypes;
}
-uno::Sequence<sal_Int8> SAL_CALL ScTableSheetObj::getImplementationId() throw(uno::RuntimeException, std::exception)
+uno::Sequence<sal_Int8> SAL_CALL ScTableSheetObj::getImplementationId()
{
return css::uno::Sequence<sal_Int8>();
}
@@ -6932,7 +6803,7 @@ SCTAB ScTableSheetObj::GetTab_Impl() const
// former XSheet
-uno::Reference<table::XTableCharts> SAL_CALL ScTableSheetObj::getCharts() throw(uno::RuntimeException, std::exception)
+uno::Reference<table::XTableCharts> SAL_CALL ScTableSheetObj::getCharts()
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -6944,7 +6815,6 @@ uno::Reference<table::XTableCharts> SAL_CALL ScTableSheetObj::getCharts() throw(
}
uno::Reference<sheet::XDataPilotTables> SAL_CALL ScTableSheetObj::getDataPilotTables()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -6955,7 +6825,7 @@ uno::Reference<sheet::XDataPilotTables> SAL_CALL ScTableSheetObj::getDataPilotTa
return nullptr;
}
-uno::Reference<sheet::XScenarios> SAL_CALL ScTableSheetObj::getScenarios() throw(uno::RuntimeException, std::exception)
+uno::Reference<sheet::XScenarios> SAL_CALL ScTableSheetObj::getScenarios()
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -6968,7 +6838,6 @@ uno::Reference<sheet::XScenarios> SAL_CALL ScTableSheetObj::getScenarios() throw
}
uno::Reference<sheet::XSheetAnnotations> SAL_CALL ScTableSheetObj::getAnnotations()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -6981,14 +6850,13 @@ uno::Reference<sheet::XSheetAnnotations> SAL_CALL ScTableSheetObj::getAnnotation
}
uno::Reference<table::XCellRange> SAL_CALL ScTableSheetObj::getCellRangeByName(
- const OUString& rRange ) throw(uno::RuntimeException, std::exception)
+ const OUString& rRange )
{
SolarMutexGuard aGuard;
return ScCellRangeObj::getCellRangeByName( rRange );
}
uno::Reference<sheet::XSheetCellCursor> SAL_CALL ScTableSheetObj::createCursor()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7003,7 +6871,6 @@ uno::Reference<sheet::XSheetCellCursor> SAL_CALL ScTableSheetObj::createCursor()
uno::Reference<sheet::XSheetCellCursor> SAL_CALL ScTableSheetObj::createCursorByRange(
const uno::Reference<sheet::XSheetCellRange>& xCellRange )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7023,7 +6890,6 @@ uno::Reference<sheet::XSheetCellCursor> SAL_CALL ScTableSheetObj::createCursorBy
// XSheetCellRange
uno::Reference<sheet::XSpreadsheet> SAL_CALL ScTableSheetObj::getSpreadsheet()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
return this; //!???
@@ -7033,7 +6899,6 @@ uno::Reference<sheet::XSpreadsheet> SAL_CALL ScTableSheetObj::getSpreadsheet()
uno::Reference<table::XCell> SAL_CALL ScTableSheetObj::getCellByPosition(
sal_Int32 nColumn, sal_Int32 nRow )
- throw(lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
return ScCellRangeObj::GetCellByPosition_Impl(nColumn, nRow);
@@ -7041,14 +6906,12 @@ uno::Reference<table::XCell> SAL_CALL ScTableSheetObj::getCellByPosition(
uno::Reference<table::XCellRange> SAL_CALL ScTableSheetObj::getCellRangeByPosition(
sal_Int32 nLeft, sal_Int32 nTop, sal_Int32 nRight, sal_Int32 nBottom )
- throw(lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
return ScCellRangeObj::getCellRangeByPosition(nLeft,nTop,nRight,nBottom);
}
uno::Sequence<sheet::TablePageBreakData> SAL_CALL ScTableSheetObj::getColumnPageBreaks()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7094,7 +6957,6 @@ uno::Sequence<sheet::TablePageBreakData> SAL_CALL ScTableSheetObj::getColumnPage
}
uno::Sequence<sheet::TablePageBreakData> SAL_CALL ScTableSheetObj::getRowPageBreaks()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7117,7 +6979,7 @@ uno::Sequence<sheet::TablePageBreakData> SAL_CALL ScTableSheetObj::getRowPageBre
return uno::Sequence<sheet::TablePageBreakData>(0);
}
-void SAL_CALL ScTableSheetObj::removeAllManualPageBreaks() throw(uno::RuntimeException, std::exception)
+void SAL_CALL ScTableSheetObj::removeAllManualPageBreaks()
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7149,7 +7011,7 @@ void SAL_CALL ScTableSheetObj::removeAllManualPageBreaks() throw(uno::RuntimeExc
// XNamed
-OUString SAL_CALL ScTableSheetObj::getName() throw(uno::RuntimeException, std::exception)
+OUString SAL_CALL ScTableSheetObj::getName()
{
SolarMutexGuard aGuard;
OUString aName;
@@ -7160,7 +7022,6 @@ OUString SAL_CALL ScTableSheetObj::getName() throw(uno::RuntimeException, std::e
}
void SAL_CALL ScTableSheetObj::setName( const OUString& aNewName )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7173,7 +7034,6 @@ void SAL_CALL ScTableSheetObj::setName( const OUString& aNewName )
// XDrawPageSupplier
uno::Reference<drawing::XDrawPage> SAL_CALL ScTableSheetObj::getDrawPage()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7197,7 +7057,7 @@ uno::Reference<drawing::XDrawPage> SAL_CALL ScTableSheetObj::getDrawPage()
// XCellMovement
void SAL_CALL ScTableSheetObj::insertCells( const table::CellRangeAddress& rRangeAddress,
- sheet::CellInsertMode nMode ) throw(uno::RuntimeException, std::exception)
+ sheet::CellInsertMode nMode )
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7228,7 +7088,7 @@ void SAL_CALL ScTableSheetObj::insertCells( const table::CellRangeAddress& rRang
}
void SAL_CALL ScTableSheetObj::removeRange( const table::CellRangeAddress& rRangeAddress,
- sheet::CellDeleteMode nMode ) throw(uno::RuntimeException, std::exception)
+ sheet::CellDeleteMode nMode )
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7260,7 +7120,6 @@ void SAL_CALL ScTableSheetObj::removeRange( const table::CellRangeAddress& rRang
void SAL_CALL ScTableSheetObj::moveRange( const table::CellAddress& aDestination,
const table::CellRangeAddress& aSource )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7276,7 +7135,6 @@ void SAL_CALL ScTableSheetObj::moveRange( const table::CellAddress& aDestination
void SAL_CALL ScTableSheetObj::copyRange( const table::CellAddress& aDestination,
const table::CellRangeAddress& aSource )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7332,7 +7190,6 @@ void ScTableSheetObj::PrintAreaUndo_Impl( ScPrintRangeSaver* pOldRanges )
}
uno::Sequence<table::CellRangeAddress> SAL_CALL ScTableSheetObj::getPrintAreas()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7363,7 +7220,6 @@ uno::Sequence<table::CellRangeAddress> SAL_CALL ScTableSheetObj::getPrintAreas()
void SAL_CALL ScTableSheetObj::setPrintAreas(
const uno::Sequence<table::CellRangeAddress>& aPrintAreas )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7394,7 +7250,7 @@ void SAL_CALL ScTableSheetObj::setPrintAreas(
}
}
-sal_Bool SAL_CALL ScTableSheetObj::getPrintTitleColumns() throw(uno::RuntimeException, std::exception)
+sal_Bool SAL_CALL ScTableSheetObj::getPrintTitleColumns()
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7408,7 +7264,6 @@ sal_Bool SAL_CALL ScTableSheetObj::getPrintTitleColumns() throw(uno::RuntimeExce
}
void SAL_CALL ScTableSheetObj::setPrintTitleColumns( sal_Bool bPrintTitleColumns )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7436,7 +7291,7 @@ void SAL_CALL ScTableSheetObj::setPrintTitleColumns( sal_Bool bPrintTitleColumns
}
}
-table::CellRangeAddress SAL_CALL ScTableSheetObj::getTitleColumns() throw(uno::RuntimeException, std::exception)
+table::CellRangeAddress SAL_CALL ScTableSheetObj::getTitleColumns()
{
SolarMutexGuard aGuard;
table::CellRangeAddress aRet;
@@ -7456,7 +7311,6 @@ table::CellRangeAddress SAL_CALL ScTableSheetObj::getTitleColumns() throw(uno::R
}
void SAL_CALL ScTableSheetObj::setTitleColumns( const table::CellRangeAddress& aTitleColumns )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7475,7 +7329,7 @@ void SAL_CALL ScTableSheetObj::setTitleColumns( const table::CellRangeAddress& a
}
}
-sal_Bool SAL_CALL ScTableSheetObj::getPrintTitleRows() throw(uno::RuntimeException, std::exception)
+sal_Bool SAL_CALL ScTableSheetObj::getPrintTitleRows()
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7489,7 +7343,6 @@ sal_Bool SAL_CALL ScTableSheetObj::getPrintTitleRows() throw(uno::RuntimeExcepti
}
void SAL_CALL ScTableSheetObj::setPrintTitleRows( sal_Bool bPrintTitleRows )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7517,7 +7370,7 @@ void SAL_CALL ScTableSheetObj::setPrintTitleRows( sal_Bool bPrintTitleRows )
}
}
-table::CellRangeAddress SAL_CALL ScTableSheetObj::getTitleRows() throw(uno::RuntimeException, std::exception)
+table::CellRangeAddress SAL_CALL ScTableSheetObj::getTitleRows()
{
SolarMutexGuard aGuard;
table::CellRangeAddress aRet;
@@ -7537,7 +7390,6 @@ table::CellRangeAddress SAL_CALL ScTableSheetObj::getTitleRows() throw(uno::Runt
}
void SAL_CALL ScTableSheetObj::setTitleRows( const table::CellRangeAddress& aTitleRows )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7558,7 +7410,7 @@ void SAL_CALL ScTableSheetObj::setTitleRows( const table::CellRangeAddress& aTit
// XSheetLinkable
-sheet::SheetLinkMode SAL_CALL ScTableSheetObj::getLinkMode() throw(uno::RuntimeException, std::exception)
+sheet::SheetLinkMode SAL_CALL ScTableSheetObj::getLinkMode()
{
SolarMutexGuard aGuard;
sheet::SheetLinkMode eRet = sheet::SheetLinkMode_NONE;
@@ -7575,7 +7427,6 @@ sheet::SheetLinkMode SAL_CALL ScTableSheetObj::getLinkMode() throw(uno::RuntimeE
}
void SAL_CALL ScTableSheetObj::setLinkMode( sheet::SheetLinkMode nLinkMode )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
@@ -7587,7 +7438,7 @@ void SAL_CALL ScTableSheetObj::setLinkMode( sheet::SheetLinkMode nLinkMode )
link( aUrl, aSheet, "", "", nLinkMode );
}
-OUString SAL_CALL ScTableSheetObj::getLinkUrl() throw(uno::RuntimeException, std::exception)
+OUString SAL_CALL ScTableSheetObj::getLinkUrl()
{
SolarMutexGuard aGuard;
OUString aFile;
@@ -7598,7 +7449,6 @@ OUString SAL_CALL ScTableSheetObj::getLinkUrl() throw(uno::RuntimeException, std
}
void SAL_CALL ScTableSheetObj::setLinkUrl( const OUString& aLinkUrl )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
@@ -7610,7 +7460,7 @@ void SAL_CALL ScTableSheetObj::setLinkUrl( const OUString& aLinkUrl )
link( aLinkUrl, aSheet, "", "", eMode );
}
-OUString SAL_CALL ScTableSheetObj::getLinkSheetName() throw(uno::RuntimeException, std::exception)
+OUString SAL_CALL ScTableSheetObj::getLinkSheetName()
{
SolarMutexGuard aGuard;
OUString aSheet;
@@ -7621,7 +7471,6 @@ OUString SAL_CALL ScTableSheetObj::getLinkSheetName() throw(uno::RuntimeExceptio
}
void SAL_CALL ScTableSheetObj::setLinkSheetName( const OUString& aLinkSheetName )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
@@ -7635,7 +7484,7 @@ void SAL_CALL ScTableSheetObj::setLinkSheetName( const OUString& aLinkSheetName
void SAL_CALL ScTableSheetObj::link( const OUString& aUrl, const OUString& aSheetName,
const OUString& aFilterName, const OUString& aFilterOptions,
- sheet::SheetLinkMode nMode ) throw(uno::RuntimeException, std::exception)
+ sheet::SheetLinkMode nMode )
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7700,7 +7549,6 @@ void SAL_CALL ScTableSheetObj::link( const OUString& aUrl, const OUString& aShee
// XSheetAuditing
sal_Bool SAL_CALL ScTableSheetObj::hideDependents( const table::CellAddress& aPosition )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7715,7 +7563,6 @@ sal_Bool SAL_CALL ScTableSheetObj::hideDependents( const table::CellAddress& aPo
}
sal_Bool SAL_CALL ScTableSheetObj::hidePrecedents( const table::CellAddress& aPosition )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7730,7 +7577,6 @@ sal_Bool SAL_CALL ScTableSheetObj::hidePrecedents( const table::CellAddress& aPo
}
sal_Bool SAL_CALL ScTableSheetObj::showDependents( const table::CellAddress& aPosition )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7745,7 +7591,6 @@ sal_Bool SAL_CALL ScTableSheetObj::showDependents( const table::CellAddress& aPo
}
sal_Bool SAL_CALL ScTableSheetObj::showPrecedents( const table::CellAddress& aPosition )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7760,7 +7605,6 @@ sal_Bool SAL_CALL ScTableSheetObj::showPrecedents( const table::CellAddress& aPo
}
sal_Bool SAL_CALL ScTableSheetObj::showErrors( const table::CellAddress& aPosition )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7774,7 +7618,7 @@ sal_Bool SAL_CALL ScTableSheetObj::showErrors( const table::CellAddress& aPositi
return false;
}
-sal_Bool SAL_CALL ScTableSheetObj::showInvalid() throw(uno::RuntimeException, std::exception)
+sal_Bool SAL_CALL ScTableSheetObj::showInvalid()
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7783,7 +7627,7 @@ sal_Bool SAL_CALL ScTableSheetObj::showInvalid() throw(uno::RuntimeException, st
return false;
}
-void SAL_CALL ScTableSheetObj::clearArrows() throw(uno::RuntimeException, std::exception)
+void SAL_CALL ScTableSheetObj::clearArrows()
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7795,8 +7639,6 @@ void SAL_CALL ScTableSheetObj::clearArrows() throw(uno::RuntimeException, std::e
void SAL_CALL ScTableSheetObj::group( const table::CellRangeAddress& rGroupRange,
table::TableOrientation nOrientation )
- throw (uno::RuntimeException,
- std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7812,8 +7654,6 @@ void SAL_CALL ScTableSheetObj::group( const table::CellRangeAddress& rGroupRange
void SAL_CALL ScTableSheetObj::ungroup( const table::CellRangeAddress& rGroupRange,
table::TableOrientation nOrientation )
- throw (uno::RuntimeException,
- std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7828,7 +7668,6 @@ void SAL_CALL ScTableSheetObj::ungroup( const table::CellRangeAddress& rGroupRan
}
void SAL_CALL ScTableSheetObj::autoOutline( const table::CellRangeAddress& rCellRange )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7842,7 +7681,6 @@ void SAL_CALL ScTableSheetObj::autoOutline( const table::CellRangeAddress& rCell
}
void SAL_CALL ScTableSheetObj::clearOutline()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7855,7 +7693,6 @@ void SAL_CALL ScTableSheetObj::clearOutline()
}
void SAL_CALL ScTableSheetObj::hideDetail( const table::CellRangeAddress& rCellRange )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7869,7 +7706,6 @@ void SAL_CALL ScTableSheetObj::hideDetail( const table::CellRangeAddress& rCellR
}
void SAL_CALL ScTableSheetObj::showDetail( const table::CellRangeAddress& rCellRange )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7883,7 +7719,6 @@ void SAL_CALL ScTableSheetObj::showDetail( const table::CellRangeAddress& rCellR
}
void SAL_CALL ScTableSheetObj::showLevel( sal_Int16 nLevel, table::TableOrientation nOrientation )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7899,7 +7734,6 @@ void SAL_CALL ScTableSheetObj::showLevel( sal_Int16 nLevel, table::TableOrientat
// XProtectable
void SAL_CALL ScTableSheetObj::protect( const OUString& aPassword )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7911,7 +7745,6 @@ void SAL_CALL ScTableSheetObj::protect( const OUString& aPassword )
}
void SAL_CALL ScTableSheetObj::unprotect( const OUString& aPassword )
- throw(lang::IllegalArgumentException, uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7923,7 +7756,7 @@ void SAL_CALL ScTableSheetObj::unprotect( const OUString& aPassword )
}
}
-sal_Bool SAL_CALL ScTableSheetObj::isProtected() throw(uno::RuntimeException, std::exception)
+sal_Bool SAL_CALL ScTableSheetObj::isProtected()
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7936,7 +7769,7 @@ sal_Bool SAL_CALL ScTableSheetObj::isProtected() throw(uno::RuntimeException, st
// XScenario
-sal_Bool SAL_CALL ScTableSheetObj::getIsScenario() throw(uno::RuntimeException, std::exception)
+sal_Bool SAL_CALL ScTableSheetObj::getIsScenario()
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7946,7 +7779,7 @@ sal_Bool SAL_CALL ScTableSheetObj::getIsScenario() throw(uno::RuntimeException,
return false;
}
-OUString SAL_CALL ScTableSheetObj::getScenarioComment() throw(uno::RuntimeException, std::exception)
+OUString SAL_CALL ScTableSheetObj::getScenarioComment()
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7962,7 +7795,6 @@ OUString SAL_CALL ScTableSheetObj::getScenarioComment() throw(uno::RuntimeExcept
}
void SAL_CALL ScTableSheetObj::setScenarioComment( const OUString& aScenarioComment )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -7985,7 +7817,6 @@ void SAL_CALL ScTableSheetObj::setScenarioComment( const OUString& aScenarioComm
}
void SAL_CALL ScTableSheetObj::addRanges( const uno::Sequence<table::CellRangeAddress>& rScenRanges )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -8022,7 +7853,7 @@ void SAL_CALL ScTableSheetObj::addRanges( const uno::Sequence<table::CellRangeAd
}
}
-void SAL_CALL ScTableSheetObj::apply() throw(uno::RuntimeException, std::exception)
+void SAL_CALL ScTableSheetObj::apply()
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -8047,7 +7878,6 @@ void SAL_CALL ScTableSheetObj::apply() throw(uno::RuntimeException, std::excepti
// XScenarioEnhanced
uno::Sequence< table::CellRangeAddress > SAL_CALL ScTableSheetObj::getRanges( )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -8080,7 +7910,6 @@ uno::Sequence< table::CellRangeAddress > SAL_CALL ScTableSheetObj::getRanges( )
// XExternalSheetName
void ScTableSheetObj::setExternalName( const OUString& aUrl, const OUString& aSheetName )
- throw (container::ElementExistException, uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -8099,7 +7928,7 @@ void ScTableSheetObj::setExternalName( const OUString& aUrl, const OUString& aSh
// XEventsSupplier
-uno::Reference<container::XNameReplace> SAL_CALL ScTableSheetObj::getEvents() throw (uno::RuntimeException, std::exception)
+uno::Reference<container::XNameReplace> SAL_CALL ScTableSheetObj::getEvents()
{
SolarMutexGuard aGuard;
ScDocShell* pDocSh = GetDocShell();
@@ -8112,7 +7941,6 @@ uno::Reference<container::XNameReplace> SAL_CALL ScTableSheetObj::getEvents() th
// XPropertySet erweitert fuer Sheet-Properties
uno::Reference<beans::XPropertySetInfo> SAL_CALL ScTableSheetObj::getPropertySetInfo()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
static uno::Reference<beans::XPropertySetInfo> aRef(
@@ -8121,8 +7949,6 @@ uno::Reference<beans::XPropertySetInfo> SAL_CALL ScTableSheetObj::getPropertySet
}
void ScTableSheetObj::SetOnePropertyValue( const SfxItemPropertySimpleEntry* pEntry, const uno::Any& aValue )
- throw(lang::IllegalArgumentException, uno::RuntimeException,
- std::exception)
{
if ( pEntry )
{
@@ -8454,8 +8280,6 @@ void ScTableSheetObj::SetOnePropertyValue( const SfxItemPropertySimpleEntry* pEn
void ScTableSheetObj::GetOnePropertyValue( const SfxItemPropertySimpleEntry* pEntry,
uno::Any& rAny )
- throw(uno::RuntimeException,
- std::exception)
{
if ( pEntry )
{
@@ -8605,19 +8429,17 @@ const SfxItemPropertyMap& ScTableSheetObj::GetItemPropertyMap()
// XServiceInfo
-OUString SAL_CALL ScTableSheetObj::getImplementationName() throw(uno::RuntimeException, std::exception)
+OUString SAL_CALL ScTableSheetObj::getImplementationName()
{
return OUString( "ScTableSheetObj" );
}
sal_Bool SAL_CALL ScTableSheetObj::supportsService( const OUString& rServiceName )
- throw(uno::RuntimeException, std::exception)
{
return cppu::supportsService(this, rServiceName);
}
uno::Sequence<OUString> SAL_CALL ScTableSheetObj::getSupportedServiceNames()
- throw(uno::RuntimeException, std::exception)
{
return {SCSPREADSHEET_SERVICE,
SCSHEETCELLRANGE_SERVICE,
@@ -8631,7 +8453,7 @@ uno::Sequence<OUString> SAL_CALL ScTableSheetObj::getSupportedServiceNames()
// XUnoTunnel
sal_Int64 SAL_CALL ScTableSheetObj::getSomething(
- const uno::Sequence<sal_Int8 >& rId ) throw(uno::RuntimeException, std::exception)
+ const uno::Sequence<sal_Int8 >& rId )
{
if ( rId.getLength() == 16 &&
0 == memcmp( getUnoTunnelId().getConstArray(),
@@ -8672,7 +8494,7 @@ ScTableColumnObj::~ScTableColumnObj()
{
}
-uno::Any SAL_CALL ScTableColumnObj::queryInterface( const uno::Type& rType ) throw(uno::RuntimeException, std::exception)
+uno::Any SAL_CALL ScTableColumnObj::queryInterface( const uno::Type& rType )
{
SC_QUERYINTERFACE( container::XNamed )
@@ -8689,7 +8511,7 @@ void SAL_CALL ScTableColumnObj::release() throw()
ScCellRangeObj::release();
}
-uno::Sequence<uno::Type> SAL_CALL ScTableColumnObj::getTypes() throw(uno::RuntimeException, std::exception)
+uno::Sequence<uno::Type> SAL_CALL ScTableColumnObj::getTypes()
{
static uno::Sequence<uno::Type> aTypes;
if ( aTypes.getLength() == 0 )
@@ -8708,14 +8530,14 @@ uno::Sequence<uno::Type> SAL_CALL ScTableColumnObj::getTypes() throw(uno::Runtim
return aTypes;
}
-uno::Sequence<sal_Int8> SAL_CALL ScTableColumnObj::getImplementationId() throw(uno::RuntimeException, std::exception)
+uno::Sequence<sal_Int8> SAL_CALL ScTableColumnObj::getImplementationId()
{
return css::uno::Sequence<sal_Int8>();
}
// XNamed
-OUString SAL_CALL ScTableColumnObj::getName() throw(uno::RuntimeException, std::exception)
+OUString SAL_CALL ScTableColumnObj::getName()
{
SolarMutexGuard aGuard;
@@ -8727,7 +8549,6 @@ OUString SAL_CALL ScTableColumnObj::getName() throw(uno::RuntimeException, std::
}
void SAL_CALL ScTableColumnObj::setName( const OUString& /* aNewName */ )
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
throw uno::RuntimeException(); // read-only
@@ -8736,7 +8557,6 @@ void SAL_CALL ScTableColumnObj::setName( const OUString& /* aNewName */ )
// XPropertySet erweitert fuer Spalten-Properties
uno::Reference<beans::XPropertySetInfo> SAL_CALL ScTableColumnObj::getPropertySetInfo()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
static uno::Reference<beans::XPropertySetInfo> aRef(
@@ -8745,8 +8565,6 @@ uno::Reference<beans::XPropertySetInfo> SAL_CALL ScTableColumnObj::getPropertySe
}
void ScTableColumnObj::SetOnePropertyValue(const SfxItemPropertySimpleEntry* pEntry, const uno::Any& aValue)
- throw(lang::IllegalArgumentException, uno::RuntimeException,
- std::exception)
{
if ( pEntry )
{
@@ -8810,7 +8628,6 @@ void ScTableColumnObj::SetOnePropertyValue(const SfxItemPropertySimpleEntry* pEn
}
void ScTableColumnObj::GetOnePropertyValue( const SfxItemPropertySimpleEntry* pEntry, uno::Any& rAny )
- throw(uno::RuntimeException, std::exception)
{
if ( pEntry )
{
@@ -8876,7 +8693,6 @@ ScTableRowObj::~ScTableRowObj()
// XPropertySet erweitert fuer Zeilen-Properties
uno::Reference<beans::XPropertySetInfo> SAL_CALL ScTableRowObj::getPropertySetInfo()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
static uno::Reference<beans::XPropertySetInfo> aRef(
@@ -8885,7 +8701,6 @@ uno::Reference<beans::XPropertySetInfo> SAL_CALL ScTableRowObj::getPropertySetIn
}
void ScTableRowObj::SetOnePropertyValue( const SfxItemPropertySimpleEntry* pEntry, const uno::Any& aValue )
- throw(lang::IllegalArgumentException, uno::RuntimeException, std::exception)
{
if ( pEntry )
{
@@ -8960,7 +8775,6 @@ void ScTableRowObj::SetOnePropertyValue( const SfxItemPropertySimpleEntry* pEntr
}
void ScTableRowObj::GetOnePropertyValue( const SfxItemPropertySimpleEntry* pEntry, uno::Any& rAny )
- throw(uno::RuntimeException, std::exception)
{
if ( pEntry )
{
@@ -9048,7 +8862,6 @@ void ScCellsObj::Notify( SfxBroadcaster&, const SfxHint& rHint )
// XEnumerationAccess
uno::Reference<container::XEnumeration> SAL_CALL ScCellsObj::createEnumeration()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
if (pDocShell)
@@ -9056,13 +8869,13 @@ uno::Reference<container::XEnumeration> SAL_CALL ScCellsObj::createEnumeration()
return nullptr;
}
-uno::Type SAL_CALL ScCellsObj::getElementType() throw(uno::RuntimeException, std::exception)
+uno::Type SAL_CALL ScCellsObj::getElementType()
{
SolarMutexGuard aGuard;
return cppu::UnoType<table::XCell>::get();
}
-sal_Bool SAL_CALL ScCellsObj::hasElements() throw(uno::RuntimeException, std::exception)
+sal_Bool SAL_CALL ScCellsObj::hasElements()
{
SolarMutexGuard aGuard;
bool bHas = false;
@@ -9184,14 +8997,13 @@ void ScCellsEnumeration::Notify( SfxBroadcaster&, const SfxHint& rHint )
// XEnumeration
-sal_Bool SAL_CALL ScCellsEnumeration::hasMoreElements() throw(uno::RuntimeException, std::exception)
+sal_Bool SAL_CALL ScCellsEnumeration::hasMoreElements()
{
SolarMutexGuard aGuard;
return !bAtEnd;
}
-uno::Any SAL_CALL ScCellsEnumeration::nextElement() throw(container::NoSuchElementException,
- lang::WrappedTargetException, uno::RuntimeException, std::exception)
+uno::Any SAL_CALL ScCellsEnumeration::nextElement()
{
SolarMutexGuard aGuard;
if (pDocShell && !bAtEnd)
@@ -9270,7 +9082,7 @@ ScCellRangeObj* ScCellFormatsObj::GetObjectByIndex_Impl(long nIndex) const
// XIndexAccess
-sal_Int32 SAL_CALL ScCellFormatsObj::getCount() throw(uno::RuntimeException, std::exception)
+sal_Int32 SAL_CALL ScCellFormatsObj::getCount()
{
SolarMutexGuard aGuard;
@@ -9292,8 +9104,6 @@ sal_Int32 SAL_CALL ScCellFormatsObj::getCount() throw(uno::RuntimeException, std
}
uno::Any SAL_CALL ScCellFormatsObj::getByIndex( sal_Int32 nIndex )
- throw(lang::IndexOutOfBoundsException,
- lang::WrappedTargetException, uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
@@ -9304,13 +9114,13 @@ uno::Any SAL_CALL ScCellFormatsObj::getByIndex( sal_Int32 nIndex )
throw lang::IndexOutOfBoundsException();
}
-uno::Type SAL_CALL ScCellFormatsObj::getElementType() throw(uno::RuntimeException, std::exception)
+uno::Type SAL_CALL ScCellFormatsObj::getElementType()
{
SolarMutexGuard aGuard;
return cppu::UnoType<table::XCellRange>::get();
}
-sal_Bool SAL_CALL ScCellFormatsObj::hasElements() throw(uno::RuntimeException, std::exception)
+sal_Bool SAL_CALL ScCellFormatsObj::hasElements()
{
SolarMutexGuard aGuard;
return ( getCount() != 0 ); //! immer groesser 0 ??
@@ -9319,7 +9129,6 @@ sal_Bool SAL_CALL ScCellFormatsObj::hasElements() throw(uno::RuntimeException, s
// XEnumerationAccess
uno::Reference<container::XEnumeration> SAL_CALL ScCellFormatsObj::createEnumeration()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
if (pDocShell)
@@ -9416,14 +9225,13 @@ void ScCellFormatsEnumeration::Notify( SfxBroadcaster&, const SfxHint& rHint )
// XEnumeration
-sal_Bool SAL_CALL ScCellFormatsEnumeration::hasMoreElements() throw(uno::RuntimeException, std::exception)
+sal_Bool SAL_CALL ScCellFormatsEnumeration::hasMoreElements()
{
SolarMutexGuard aGuard;
return !bAtEnd;
}
-uno::Any SAL_CALL ScCellFormatsEnumeration::nextElement() throw(container::NoSuchElementException,
- lang::WrappedTargetException, uno::RuntimeException, std::exception)
+uno::Any SAL_CALL ScCellFormatsEnumeration::nextElement()
{
SolarMutexGuard aGuard;
@@ -9646,7 +9454,7 @@ ScUniqueCellFormatsObj::ScUniqueCellFormatsObj(ScDocShell* pDocSh, const ScRange
// XIndexAccess
-sal_Int32 SAL_CALL ScUniqueCellFormatsObj::getCount() throw(uno::RuntimeException, std::exception)
+sal_Int32 SAL_CALL ScUniqueCellFormatsObj::getCount()
{
SolarMutexGuard aGuard;
@@ -9654,8 +9462,6 @@ sal_Int32 SAL_CALL ScUniqueCellFormatsObj::getCount() throw(uno::RuntimeExceptio
}
uno::Any SAL_CALL ScUniqueCellFormatsObj::getByIndex( sal_Int32 nIndex )
- throw(lang::IndexOutOfBoundsException,
- lang::WrappedTargetException, uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
@@ -9665,13 +9471,13 @@ uno::Any SAL_CALL ScUniqueCellFormatsObj::getByIndex( sal_Int32 nIndex )
throw lang::IndexOutOfBoundsException();
}
-uno::Type SAL_CALL ScUniqueCellFormatsObj::getElementType() throw(uno::RuntimeException, std::exception)
+uno::Type SAL_CALL ScUniqueCellFormatsObj::getElementType()
{
SolarMutexGuard aGuard;
return cppu::UnoType<sheet::XSheetCellRangeContainer>::get();
}
-sal_Bool SAL_CALL ScUniqueCellFormatsObj::hasElements() throw(uno::RuntimeException, std::exception)
+sal_Bool SAL_CALL ScUniqueCellFormatsObj::hasElements()
{
SolarMutexGuard aGuard;
return ( aRangeLists.size() != 0 );
@@ -9680,7 +9486,6 @@ sal_Bool SAL_CALL ScUniqueCellFormatsObj::hasElements() throw(uno::RuntimeExcept
// XEnumerationAccess
uno::Reference<container::XEnumeration> SAL_CALL ScUniqueCellFormatsObj::createEnumeration()
- throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
if (pDocShell)
@@ -9719,14 +9524,13 @@ void ScUniqueCellFormatsEnumeration::Notify( SfxBroadcaster&, const SfxHint& rHi
// XEnumeration
-sal_Bool SAL_CALL ScUniqueCellFormatsEnumeration::hasMoreElements() throw(uno::RuntimeException, std::exception)
+sal_Bool SAL_CALL ScUniqueCellFormatsEnumeration::hasMoreElements()
{
SolarMutexGuard aGuard;
return static_cast<sal_uInt32>(nCurrentPosition) < aRangeLists.size();
}
-uno::Any SAL_CALL ScUniqueCellFormatsEnumeration::nextElement() throw(container::NoSuchElementException,
- lang::WrappedTargetException, uno::RuntimeException, std::exception)
+uno::Any SAL_CALL ScUniqueCellFormatsEnumeration::nextElement()
{
SolarMutexGuard aGuard;