summaryrefslogtreecommitdiff
path: root/sc/source/ui
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-07-09 09:05:50 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-07-09 09:59:02 +0100
commit92fe8838f7c6e2bd411b381a77f0fc4c43272b1d (patch)
tree609c0b7f33ecce86197365a18e51d6f74a8b28b3 /sc/source/ui
parented8678f3f810d096f00b2dc4053d519ab487be69 (diff)
coverity#707382 Uncaught exception
and coverity#707383 Uncaught exception coverity#707384 Uncaught exception coverity#707385 Uncaught exception coverity#707386 Uncaught exception coverity#707387 Uncaught exception coverity#707388 Uncaught exception coverity#707389 Uncaught exception coverity#707390 Uncaught exception coverity#707391 Uncaught exception coverity#707409 Uncaught exception coverity#707411 Uncaught exception coverity#707413 Uncaught exception coverity#707414 Uncaught exception coverity#706919 Uncaught exception coverity#706920 Uncaught exception coverity#706933 Uncaught exception coverity#706935 Uncaught exception coverity#706968 Uncaught exception coverity#706970 Uncaught exception coverity#706973 Uncaught exception coverity#706974 Uncaught exception coverity#707032 Uncaught exception coverity#707044 Uncaught exception coverity#738455 Uncaught exception coverity#738456 Uncaught exception Change-Id: Ifd4c0a2b6b4ddcb5df01a951b8d56435ee32d754
Diffstat (limited to 'sc/source/ui')
-rw-r--r--sc/source/ui/vba/vbaapplication.cxx9
-rw-r--r--sc/source/ui/vba/vbaapplication.hxx2
-rw-r--r--sc/source/ui/vba/vbaaxes.cxx4
-rw-r--r--sc/source/ui/vba/vbaaxis.cxx86
-rw-r--r--sc/source/ui/vba/vbacondition.cxx2
-rw-r--r--sc/source/ui/vba/vbaformat.cxx70
-rw-r--r--sc/source/ui/vba/vbaformatcondition.cxx10
-rw-r--r--sc/source/ui/vba/vbaformatconditions.cxx18
-rw-r--r--sc/source/ui/vba/vbapagebreak.cxx2
-rw-r--r--sc/source/ui/vba/vbapagebreaks.cxx8
-rw-r--r--sc/source/ui/vba/vbapagesetup.cxx28
-rw-r--r--sc/source/ui/vba/vbarange.cxx32
-rw-r--r--sc/source/ui/vba/vbastyle.cxx18
-rw-r--r--sc/source/ui/vba/vbastyles.cxx14
-rw-r--r--sc/source/ui/vba/vbawindow.cxx2
-rw-r--r--sc/source/ui/vba/vbaworksheet.cxx2
16 files changed, 154 insertions, 153 deletions
diff --git a/sc/source/ui/vba/vbaapplication.cxx b/sc/source/ui/vba/vbaapplication.cxx
index 6426232641be..db47c7f2db43 100644
--- a/sc/source/ui/vba/vbaapplication.cxx
+++ b/sc/source/ui/vba/vbaapplication.cxx
@@ -867,7 +867,8 @@ static uno::Reference< util::XPathSettings > lcl_getPathSettingsService( const u
}
return xPathSettings;
}
-OUString ScVbaApplication::getOfficePath( const OUString& _sPathType ) throw ( uno::RuntimeException, script::BasicErrorException )
+
+OUString ScVbaApplication::getOfficePath( const OUString& _sPathType ) throw (uno::RuntimeException)
{
OUString sRetPath;
uno::Reference< util::XPathSettings > xProps = lcl_getPathSettingsService( mxContext );
@@ -884,7 +885,7 @@ OUString ScVbaApplication::getOfficePath( const OUString& _sPathType ) throw ( u
}
catch (const uno::Exception&)
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::runtimeexception(SbERR_METHOD_FAILED, OUString());
}
return sRetPath;
}
@@ -1109,7 +1110,7 @@ uno::Reference< excel::XRange > SAL_CALL ScVbaApplication::Intersect(
throw (script::BasicErrorException, uno::RuntimeException, std::exception)
{
if( !rArg1.is() || !rArg2.is() )
- DebugHelper::exception( SbERR_BAD_PARAMETER, OUString() );
+ DebugHelper::basicexception( SbERR_BAD_PARAMETER, OUString() );
// initialize the result list with 1st parameter, join its ranges together
ListOfScRange aList;
@@ -1163,7 +1164,7 @@ uno::Reference< excel::XRange > SAL_CALL ScVbaApplication::Union(
throw (script::BasicErrorException, uno::RuntimeException, std::exception)
{
if( !rArg1.is() || !rArg2.is() )
- DebugHelper::exception( SbERR_BAD_PARAMETER, OUString() );
+ DebugHelper::basicexception( SbERR_BAD_PARAMETER, OUString() );
ListOfScRange aList;
lclAddToListOfScRange( aList, uno::Any( rArg1 ) );
diff --git a/sc/source/ui/vba/vbaapplication.hxx b/sc/source/ui/vba/vbaapplication.hxx
index 0e69474248e9..a9ea9dce95ea 100644
--- a/sc/source/ui/vba/vbaapplication.hxx
+++ b/sc/source/ui/vba/vbaapplication.hxx
@@ -37,7 +37,7 @@ private:
// note: member variables moved to struct "ScVbaAppSettings", see cxx file, to be shared by all application instances
ScVbaAppSettings& mrAppSettings;
- OUString getOfficePath( const OUString& sPath ) throw ( css::uno::RuntimeException, css::script::BasicErrorException );
+ OUString getOfficePath( const OUString& sPath ) throw ( css::uno::RuntimeException );
protected:
virtual css::uno::Reference< css::frame::XModel > getCurrentDocument() throw (css::uno::RuntimeException) SAL_OVERRIDE;
diff --git a/sc/source/ui/vba/vbaaxes.cxx b/sc/source/ui/vba/vbaaxes.cxx
index 9d3624925b31..ca76ea4ab5e0 100644
--- a/sc/source/ui/vba/vbaaxes.cxx
+++ b/sc/source/ui/vba/vbaaxes.cxx
@@ -69,11 +69,11 @@ ScVbaAxes::createAxis( const uno::Reference< excel::XChart >& xChart, const uno:
if (((nType == xlCategory) || (nType == xlSeriesAxis) || (nType == xlValue)))
{
if ((nAxisGroup != xlPrimary) && (nAxisGroup != xlSecondary))
- throw script::BasicErrorException( OUString(), NULL, SbERR_METHOD_FAILED, OUString());
+ DebugHelper::runtimeexception(SbERR_METHOD_FAILED, OUString());
xAxisPropertySet.set( pChart->getAxisPropertySet(nType, nAxisGroup), uno::UNO_QUERY_THROW );
}
else
- throw script::BasicErrorException( OUString(), NULL, SbERR_METHOD_FAILED, OUString());
+ DebugHelper::runtimeexception(SbERR_METHOD_FAILED, OUString());
uno::Reference< XHelperInterface > xParent( xChart, uno::UNO_QUERY_THROW );
return new ScVbaAxis( xParent, xContext, xAxisPropertySet, nType, nAxisGroup);
}
diff --git a/sc/source/ui/vba/vbaaxis.cxx b/sc/source/ui/vba/vbaaxis.cxx
index 8ed9bfe398d3..a7779b3e77d7 100644
--- a/sc/source/ui/vba/vbaaxis.cxx
+++ b/sc/source/ui/vba/vbaaxis.cxx
@@ -47,7 +47,7 @@ ScVbaAxis::isValueAxis() throw( script::BasicErrorException )
{
if ( getType() == xlCategory )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
return true;
}
@@ -94,7 +94,7 @@ ScVbaAxis::getAxisTitle( ) throw (script::BasicErrorException, uno::RuntimeExce
}
catch (const uno::Exception& e)
{
- DebugHelper::exception(e);
+ DebugHelper::basicexception(e);
}
return xAxisTitle;
@@ -103,13 +103,13 @@ ScVbaAxis::getAxisTitle( ) throw (script::BasicErrorException, uno::RuntimeExce
void SAL_CALL
ScVbaAxis::setDisplayUnit( ::sal_Int32 /*DisplayUnit*/ ) throw (script::BasicErrorException, uno::RuntimeException, std::exception)
{
- DebugHelper::exception(SbERR_NOT_IMPLEMENTED, OUString());
+ DebugHelper::basicexception(SbERR_NOT_IMPLEMENTED, OUString());
}
::sal_Int32 SAL_CALL
ScVbaAxis::getDisplayUnit( ) throw (script::BasicErrorException, uno::RuntimeException, std::exception)
{
- DebugHelper::exception(SbERR_NOT_IMPLEMENTED, OUString());
+ DebugHelper::basicexception(SbERR_NOT_IMPLEMENTED, OUString());
return -1;
}
@@ -143,7 +143,7 @@ ScVbaAxis::setCrosses( ::sal_Int32 _nCrosses ) throw (script::BasicErrorExceptio
}
catch (uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
}
::sal_Int32 SAL_CALL
@@ -175,7 +175,7 @@ ScVbaAxis::getCrosses( ) throw (script::BasicErrorException, uno::RuntimeExcept
}
catch (uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString() );
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString() );
}
return nCrosses;
}
@@ -191,7 +191,7 @@ ScVbaAxis::setCrossesAt( double _fCrossesAt ) throw (script::BasicErrorException
}
catch (const uno::Exception& e)
{
- DebugHelper::exception(e);
+ DebugHelper::basicexception(e);
}
}
@@ -205,7 +205,7 @@ ScVbaAxis::getCrossesAt( ) throw (script::BasicErrorException, uno::RuntimeExce
}
catch (uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
return fCrosses;
}
@@ -244,7 +244,7 @@ ScVbaAxis::setHasTitle( sal_Bool _bHasTitle ) throw (script::BasicErrorException
}
catch (const uno::Exception& e)
{
- DebugHelper::exception(e);
+ DebugHelper::basicexception(e);
}
}
@@ -270,7 +270,7 @@ ScVbaAxis::getHasTitle( ) throw (script::BasicErrorException, uno::RuntimeExcep
}
catch (const uno::Exception& e)
{
- DebugHelper::exception(e);
+ DebugHelper::basicexception(e);
}
return bHasTitle;
}
@@ -285,7 +285,7 @@ ScVbaAxis::setMinorUnit( double _fMinorUnit ) throw (script::BasicErrorException
}
catch (uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
}
@@ -300,7 +300,7 @@ ScVbaAxis::getMinorUnit( ) throw (script::BasicErrorException, uno::RuntimeExce
}
catch (uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
return fMinor;
}
@@ -315,7 +315,7 @@ ScVbaAxis::setMinorUnitIsAuto( sal_Bool _bMinorUnitIsAuto ) throw (script::Basic
}
catch (uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString() );
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString() );
}
}
@@ -330,9 +330,9 @@ ScVbaAxis::getMinorUnitIsAuto( ) throw (script::BasicErrorException, uno::Runti
mxPropertySet->getPropertyValue("AutoStepHelp") >>= bIsAuto;
}
}
- catch (uno::Exception& )
+ catch (const uno::Exception&)
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
return bIsAuto;
}
@@ -340,13 +340,13 @@ ScVbaAxis::getMinorUnitIsAuto( ) throw (script::BasicErrorException, uno::Runti
void SAL_CALL
ScVbaAxis::setReversePlotOrder( sal_Bool /*ReversePlotOrder*/ ) throw (script::BasicErrorException, uno::RuntimeException, std::exception)
{
- DebugHelper::exception(SbERR_NOT_IMPLEMENTED, OUString());
+ DebugHelper::basicexception(SbERR_NOT_IMPLEMENTED, OUString());
}
sal_Bool SAL_CALL
ScVbaAxis::getReversePlotOrder( ) throw (script::BasicErrorException, uno::RuntimeException, std::exception)
{
- DebugHelper::exception(SbERR_NOT_IMPLEMENTED, OUString());
+ DebugHelper::basicexception(SbERR_NOT_IMPLEMENTED, OUString());
return false;
}
@@ -360,9 +360,9 @@ ScVbaAxis::setMajorUnit( double _fMajorUnit ) throw (script::BasicErrorException
mxPropertySet->setPropertyValue("StepMain", uno::makeAny(_fMajorUnit));
}
}
- catch (uno::Exception& )
+ catch (const uno::Exception&)
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
}
@@ -375,9 +375,9 @@ ScVbaAxis::getMajorUnit( ) throw (script::BasicErrorException, uno::RuntimeExce
if (isValueAxis())
mxPropertySet->getPropertyValue("StepMain") >>= fMax;
}
- catch (uno::Exception& )
+ catch (const uno::Exception&)
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString() );
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString() );
}
return fMax;
}
@@ -392,9 +392,9 @@ ScVbaAxis::setMajorUnitIsAuto( sal_Bool _bMajorUnitIsAuto ) throw (script::Basic
mxPropertySet->setPropertyValue("AutoStepMain", uno::makeAny( _bMajorUnitIsAuto ));
}
}
- catch (uno::Exception& )
+ catch (const uno::Exception&)
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
}
@@ -409,9 +409,9 @@ ScVbaAxis::getMajorUnitIsAuto( ) throw (script::BasicErrorException, uno::Runti
mxPropertySet->getPropertyValue("AutoStepMain") >>= bIsAuto;
}
}
- catch (uno::Exception& )
+ catch (const uno::Exception&)
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
return bIsAuto;
}
@@ -426,9 +426,9 @@ ScVbaAxis::setMaximumScale( double _fMaximumScale ) throw (script::BasicErrorExc
mxPropertySet->setPropertyValue("Max", uno::makeAny(_fMaximumScale));
}
}
- catch ( uno::Exception& )
+ catch (const uno::Exception&)
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
}
@@ -443,9 +443,9 @@ ScVbaAxis::getMaximumScale( ) throw (script::BasicErrorException, uno::RuntimeE
mxPropertySet->getPropertyValue("Max") >>= fMax;
}
}
- catch (uno::Exception& )
+ catch (const uno::Exception&)
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
return fMax;
@@ -460,9 +460,9 @@ ScVbaAxis::setMaximumScaleIsAuto( sal_Bool _bMaximumScaleIsAuto ) throw (script:
mxPropertySet->setPropertyValue("AutoMax", uno::makeAny( _bMaximumScaleIsAuto ));
}
- catch ( uno::Exception& )
+ catch (const uno::Exception&)
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
}
@@ -475,9 +475,9 @@ ScVbaAxis::getMaximumScaleIsAuto( ) throw (script::BasicErrorException, uno::Ru
if (isValueAxis())
mxPropertySet->getPropertyValue("AutoMax") >>= bIsAuto;
}
- catch ( uno::Exception& )
+ catch (const uno::Exception&)
{
- DebugHelper::exception( SbERR_METHOD_FAILED, OUString() );
+ DebugHelper::basicexception( SbERR_METHOD_FAILED, OUString() );
}
return bIsAuto;
}
@@ -492,7 +492,7 @@ ScVbaAxis::setMinimumScale( double _fMinimumScale ) throw (script::BasicErrorExc
}
catch ( uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString() );
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString() );
}
}
@@ -507,7 +507,7 @@ ScVbaAxis::getMinimumScale( ) throw (script::BasicErrorException, uno::RuntimeE
}
catch (const uno::Exception& e)
{
- DebugHelper::exception(e);
+ DebugHelper::basicexception(e);
}
return fMin;
}
@@ -522,9 +522,9 @@ ScVbaAxis::setMinimumScaleIsAuto( sal_Bool _bMinimumScaleIsAuto ) throw (script:
mxPropertySet->setPropertyValue("AutoMin", uno::makeAny(_bMinimumScaleIsAuto));
}
}
- catch (uno::Exception& )
+ catch (const uno::Exception&)
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
}
@@ -539,9 +539,9 @@ ScVbaAxis::getMinimumScaleIsAuto( ) throw (script::BasicErrorException, uno::Ru
mxPropertySet->getPropertyValue("AutoMin") >>= bIsAuto;
}
}
- catch (uno::Exception& )
+ catch (const uno::Exception&)
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
return bIsAuto;
}
@@ -573,9 +573,9 @@ ScVbaAxis::setScaleType( ::sal_Int32 _nScaleType ) throw (script::BasicErrorExce
}
}
}
- catch (uno::Exception& )
+ catch (const uno::Exception&)
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString() );
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
}
@@ -595,9 +595,9 @@ ScVbaAxis::getScaleType( ) throw (script::BasicErrorException, uno::RuntimeExce
nScaleType = xlScaleLinear;
}
}
- catch (uno::Exception& )
+ catch (const uno::Exception&)
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
return nScaleType;
}
diff --git a/sc/source/ui/vba/vbacondition.cxx b/sc/source/ui/vba/vbacondition.cxx
index 54d320c07743..3e475d802431 100644
--- a/sc/source/ui/vba/vbacondition.cxx
+++ b/sc/source/ui/vba/vbacondition.cxx
@@ -157,7 +157,7 @@ ScVbaCondition< Ifc1 >::Operator(sal_Bool _bIncludeFormulaValue) throw ( script:
}
case sheet::ConditionOperator_NONE:
default:
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString("Operator not supported"));
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString("Operator not supported"));
break;
}
return retvalue;
diff --git a/sc/source/ui/vba/vbaformat.cxx b/sc/source/ui/vba/vbaformat.cxx
index b914ab6b735e..3cab632f1c00 100644
--- a/sc/source/ui/vba/vbaformat.cxx
+++ b/sc/source/ui/vba/vbaformat.cxx
@@ -55,13 +55,13 @@ ScVbaFormat< Ifc1 >::ScVbaFormat( const uno::Reference< XHelperInterface >& xPar
try
{
if ( !mxModel.is() )
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString( "XModel Interface could not be retrieved") );
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString( "XModel Interface could not be retrieved") );
// mxServiceInfo is unused,
// mxNumberFormatsSupplier is initialized when needed in initializeNumberFormats.
}
catch (const uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString() );
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString() );
}
}
@@ -97,9 +97,9 @@ ScVbaFormat<Ifc1>::setVerticalAlignment( const uno::Any& _oAlignment) throw (s
}
mxPropertySet->setPropertyValue( OUString( SC_UNONAME_CELLVJUS ), aVal );
}
- catch (const uno::Exception& )
+ catch (const uno::Exception&)
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
}
@@ -135,7 +135,7 @@ ScVbaFormat<Ifc1>::getVerticalAlignment( ) throw (script::BasicErrorException,
}
catch (const uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
return aResult;
}
@@ -175,7 +175,7 @@ ScVbaFormat<Ifc1>::setHorizontalAlignment( const uno::Any& HorizontalAlignment )
}
catch (const uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString() );
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString() );
}
}
@@ -216,7 +216,7 @@ ScVbaFormat<Ifc1>::getHorizontalAlignment( ) throw (script::BasicErrorException
}
catch (const uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString() );
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString() );
}
return NRetAlignment;
}
@@ -255,7 +255,7 @@ ScVbaFormat<Ifc1>::setOrientation( const uno::Any& _aOrientation ) throw (script
}
catch (const uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString() );
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString() );
}
}
template< typename Ifc1 >
@@ -292,7 +292,7 @@ ScVbaFormat<Ifc1>::getOrientation( ) throw (script::BasicErrorException, uno::R
}
catch (const uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
return NRetOrientation;
}
@@ -307,7 +307,7 @@ ScVbaFormat<Ifc1>::setWrapText( const uno::Any& _aWrapText ) throw (script::Basi
}
catch (const uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString() );
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString() );
}
}
@@ -324,9 +324,9 @@ ScVbaFormat<Ifc1>::getWrapText( ) throw (script::BasicErrorException, uno::Runt
aWrap = mxPropertySet->getPropertyValue(aPropName);
}
}
- catch (const uno::Exception& )
+ catch (const uno::Exception&)
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString() );
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString() );
}
return aWrap;
}
@@ -383,9 +383,9 @@ ScVbaFormat<Ifc1>::getNumberFormatLocal( ) throw (script::BasicErrorException,
}
}
- catch (const uno::Exception& )
+ catch (const uno::Exception&)
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
return aRet;
@@ -416,7 +416,7 @@ ScVbaFormat<Ifc1>::setNumberFormatLocal( const uno::Any& _oLocalFormatString ) t
}
catch (const uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString() );
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString() );
}
}
@@ -446,7 +446,7 @@ ScVbaFormat<Ifc1>::setNumberFormat( const uno::Any& _oFormatString ) throw (scri
}
catch (const uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
}
@@ -469,9 +469,9 @@ ScVbaFormat<Ifc1>::setIndentLevel( const uno::Any& _aLevel ) throw (script::Basi
mxPropertySet->setPropertyValue( sHoriJust, uno::makeAny( table::CellHoriJustify_LEFT) ) ;
mxPropertySet->setPropertyValue( OUString( SC_UNONAME_PINDENT ), uno::makeAny( sal_Int16(nLevel * 352.8) ) );
}
- catch (const uno::Exception& )
+ catch (const uno::Exception&)
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
}
@@ -492,9 +492,9 @@ ScVbaFormat<Ifc1>::getIndentLevel( ) throw (script::BasicErrorException, uno::R
NRetIndentLevel = uno::makeAny( sal_Int32(0) );
}
}
- catch (const uno::Exception& )
+ catch (const uno::Exception&)
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
return NRetIndentLevel;
}
@@ -514,9 +514,9 @@ ScVbaFormat<Ifc1>::setLocked( const uno::Any& _aLocked ) throw (script::BasicErr
aCellProtection.IsLocked = bIsLocked;
mxPropertySet->setPropertyValue(sCellProt, uno::makeAny( aCellProtection ) );
}
- catch (const uno::Exception& )
+ catch (const uno::Exception&)
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString() );
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString() );
}
}
@@ -534,9 +534,9 @@ ScVbaFormat<Ifc1>::setFormulaHidden( const uno::Any& FormulaHidden ) throw (scri
aCellProtection.IsFormulaHidden = bIsFormulaHidden;
mxPropertySet->setPropertyValue(sCellProt,uno::makeAny(aCellProtection));
}
- catch (const uno::Exception& )
+ catch (const uno::Exception&)
{
- DebugHelper::exception( SbERR_METHOD_FAILED, OUString() );
+ DebugHelper::basicexception( SbERR_METHOD_FAILED, OUString() );
}
}
@@ -567,9 +567,9 @@ ScVbaFormat<Ifc1>::getLocked( ) throw (script::BasicErrorException, uno::Runtim
}
}
}
- catch (const uno::Exception& )
+ catch (const uno::Exception&)
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
return aCellProtection;
}
@@ -602,7 +602,7 @@ ScVbaFormat<Ifc1>::getFormulaHidden( ) throw (script::BasicErrorException, uno:
}
catch (const uno::Exception&)
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
return aBoolRet;
}
@@ -617,7 +617,7 @@ ScVbaFormat<Ifc1>::setShrinkToFit( const uno::Any& ShrinkToFit ) throw (script::
}
catch (const uno::Exception& )
{
- DebugHelper::exception(SbERR_NOT_IMPLEMENTED, OUString() );
+ DebugHelper::basicexception(SbERR_NOT_IMPLEMENTED, OUString() );
}
}
@@ -635,7 +635,7 @@ ScVbaFormat<Ifc1>::getShrinkToFit( ) throw (script::BasicErrorException, uno::R
}
catch (const uno::Exception& )
{
- DebugHelper::exception(SbERR_NOT_IMPLEMENTED, OUString());
+ DebugHelper::basicexception(SbERR_NOT_IMPLEMENTED, OUString());
}
return aRet;
}
@@ -659,16 +659,16 @@ ScVbaFormat<Ifc1>::setReadingOrder( const uno::Any& ReadingOrder ) throw (script
aVal = uno::makeAny( text::WritingMode_RL_TB );
break;
case excel::Constants::xlContext:
- DebugHelper::exception(SbERR_NOT_IMPLEMENTED, OUString());
+ DebugHelper::basicexception(SbERR_NOT_IMPLEMENTED, OUString());
break;
default:
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
mxPropertySet->setPropertyValue( OUString( SC_UNONAME_WRITING ), aVal );
}
catch (const uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
}
@@ -699,7 +699,7 @@ ScVbaFormat<Ifc1>::getReadingOrder( ) throw (script::BasicErrorException, uno::
}
catch (const uno::Exception& )
{
- DebugHelper::exception(SbERR_NOT_IMPLEMENTED, OUString());
+ DebugHelper::basicexception(SbERR_NOT_IMPLEMENTED, OUString());
}
return NRetReadingOrder;
@@ -727,7 +727,7 @@ ScVbaFormat< Ifc1 >::getNumberFormat( ) throw (script::BasicErrorException, uno
}
catch (const uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
return aFormat;
}
@@ -744,7 +744,7 @@ ScVbaFormat<Ifc1>::isAmbiguous(const OUString& _sPropertyName) throw ( script::B
}
catch (const uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
return bResult;
}
diff --git a/sc/source/ui/vba/vbaformatcondition.cxx b/sc/source/ui/vba/vbaformatcondition.cxx
index 623d6ea7e265..683a3c9e3b8d 100644
--- a/sc/source/ui/vba/vbaformatcondition.cxx
+++ b/sc/source/ui/vba/vbaformatcondition.cxx
@@ -28,7 +28,7 @@ lcl_getScVbaFormatConditionsPtr( const uno::Reference< excel::XFormatConditions
{
ScVbaFormatConditions* pFormatConditions = static_cast< ScVbaFormatConditions* >( xFormatConditions.get() );
if ( !pFormatConditions )
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString() );
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString() );
return pFormatConditions;
}
@@ -65,9 +65,9 @@ ScVbaFormatCondition::Modify( ::sal_Int32 _nType, const uno::Any& _aOperator, co
pFormatConditions->removeFormatCondition(msStyleName, false);
pFormatConditions->Add(_nType, _aOperator, _aFormula1, _aFormula2, mxStyle);
}
- catch (uno::Exception& )
+ catch (const uno::Exception&)
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString() );
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString() );
}
}
@@ -101,7 +101,7 @@ ScVbaFormatCondition::retrieveAPIType(sal_Int32 _nVBAType, const uno::Reference<
aAPIType = sheet::ConditionOperator_NONE;
break;
default:
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString() );
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString() );
}
return aAPIType;
}
@@ -151,7 +151,7 @@ ScVbaFormatCondition::notifyRange() throw ( script::BasicErrorException )
}
catch (uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString() );
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString() );
}
}
diff --git a/sc/source/ui/vba/vbaformatconditions.cxx b/sc/source/ui/vba/vbaformatconditions.cxx
index 0aca5596c18f..10fbede1a6a9 100644
--- a/sc/source/ui/vba/vbaformatconditions.cxx
+++ b/sc/source/ui/vba/vbaformatconditions.cxx
@@ -44,7 +44,7 @@ ScVbaFormatConditions::Delete( ) throw (script::BasicErrorException, uno::Runti
{
ScVbaStyles* pStyles = static_cast< ScVbaStyles* >( mxStyles.get() );
if ( !pStyles )
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString() );
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString() );
sal_Int32 nCount = mxSheetConditionalEntries->getCount();
for (sal_Int32 i = nCount - 1; i >= 0; i--)
{
@@ -56,7 +56,7 @@ ScVbaFormatConditions::Delete( ) throw (script::BasicErrorException, uno::Runti
}
catch (uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
}
@@ -185,7 +185,7 @@ ScVbaFormatConditions::Add( ::sal_Int32 _nType, const uno::Any& _aOperator, cons
catch (uno::Exception& )
{
}
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString() );
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString() );
return xFormatCondition;
}
@@ -204,7 +204,7 @@ ScVbaFormatConditions::notifyRange() throw ( script::BasicErrorException )
}
catch (uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
}
@@ -214,7 +214,7 @@ ScVbaFormatConditions::getA1Formula(const css::uno::Any& _aFormula) throw ( scri
// #TODO, #FIXME hook-in proper formula conversion detection & logic
OUString sFormula;
if ( !( _aFormula >>= sFormula ) )
- DebugHelper::exception(SbERR_BAD_PARAMETER, OUString() );
+ DebugHelper::basicexception(SbERR_BAD_PARAMETER, OUString() );
return sFormula;
}
@@ -223,7 +223,7 @@ ScVbaFormatConditions::getStyleName()
{
ScVbaStyles* pStyles = static_cast< ScVbaStyles* >( mxStyles.get() );
if ( !pStyles )
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString() );
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString() );
uno::Sequence< OUString > sCellStyleNames = pStyles->getStyleNames();
return ContainerUtilities::getUniqueName(sCellStyleNames, sStyleNamePrefix, OUString("_"));
}
@@ -244,16 +244,16 @@ ScVbaFormatConditions::removeFormatCondition( const OUString& _sStyleName, bool
{
ScVbaStyles* pStyles = static_cast< ScVbaStyles* >( mxStyles.get() );
if ( !pStyles )
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
pStyles->Delete( _sStyleName );
}
return;
}
}
}
- catch (uno::Exception& )
+ catch (const uno::Exception&)
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
}
diff --git a/sc/source/ui/vba/vbapagebreak.cxx b/sc/source/ui/vba/vbapagebreak.cxx
index d2bc61bc2e6a..96e507eba61a 100644
--- a/sc/source/ui/vba/vbapagebreak.cxx
+++ b/sc/source/ui/vba/vbapagebreak.cxx
@@ -56,7 +56,7 @@ void ScVbaPageBreak<Ifc1>::setType(sal_Int32 type) throw (uno::RuntimeException)
(type != excel::XlPageBreak::xlPageBreakManual) &&
(type != excel::XlPageBreak::xlPageBreakAutomatic) )
{
- DebugHelper::exception(SbERR_BAD_PARAMETER, OUString() );
+ DebugHelper::runtimeexception(SbERR_BAD_PARAMETER, OUString() );
}
if( type == excel::XlPageBreak::xlPageBreakNone )
diff --git a/sc/source/ui/vba/vbapagebreaks.cxx b/sc/source/ui/vba/vbapagebreaks.cxx
index 0f4c6d4ccd0e..47a8febc46d5 100644
--- a/sc/source/ui/vba/vbapagebreaks.cxx
+++ b/sc/source/ui/vba/vbapagebreaks.cxx
@@ -71,7 +71,7 @@ public:
return xIndexAccess;
}
- sheet::TablePageBreakData getTablePageBreakData( sal_Int32 nAPIItemIndex ) throw ( script::BasicErrorException, uno::RuntimeException);
+ sheet::TablePageBreakData getTablePageBreakData( sal_Int32 nAPIItemIndex ) throw (uno::RuntimeException);
uno::Any Add( const css::uno::Any& Before ) throw ( css::script::BasicErrorException, css::uno::RuntimeException);
// XIndexAccess
@@ -133,7 +133,7 @@ uno::Any SAL_CALL RangePageBreaks::getByIndex( sal_Int32 Index ) throw (lang::In
throw lang::IndexOutOfBoundsException();
}
-sheet::TablePageBreakData RangePageBreaks::getTablePageBreakData( sal_Int32 nAPIItemIndex ) throw ( script::BasicErrorException, uno::RuntimeException)
+sheet::TablePageBreakData RangePageBreaks::getTablePageBreakData( sal_Int32 nAPIItemIndex ) throw (uno::RuntimeException)
{
sal_Int32 index = -1;
sheet::TablePageBreakData aTablePageBreakData;
@@ -149,7 +149,7 @@ sheet::TablePageBreakData RangePageBreaks::getTablePageBreakData( sal_Int32 nAPI
aTablePageBreakData = aTablePageBreakDataList[i];
sal_Int32 nPos = aTablePageBreakData.Position;
if( nPos > nUsedEnd + 1 )
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::runtimeexception(SbERR_METHOD_FAILED, OUString());
index++;
if( index == nAPIItemIndex )
return aTablePageBreakData;
@@ -164,7 +164,7 @@ uno::Any RangePageBreaks::Add( const css::uno::Any& Before ) throw ( css::script
Before >>= xRange;
if( !xRange.is() )
{
- DebugHelper::exception(SbERR_BAD_ARGUMENT, OUString());
+ DebugHelper::basicexception(SbERR_BAD_ARGUMENT, OUString());
}
sal_Int32 nAPIRowColIndex = getAPIStartofRange( xRange );
diff --git a/sc/source/ui/vba/vbapagesetup.cxx b/sc/source/ui/vba/vbapagesetup.cxx
index 7f91a80da576..6f9d7ee8812a 100644
--- a/sc/source/ui/vba/vbapagesetup.cxx
+++ b/sc/source/ui/vba/vbapagesetup.cxx
@@ -200,7 +200,7 @@ void SAL_CALL ScVbaPageSetup::setZoom( const uno::Any& zoom) throw (css::uno::Ru
zoom >>= aValue;
if( aValue )
{
- DebugHelper::exception(SbERR_BAD_PARAMETER, OUString() );
+ DebugHelper::runtimeexception(SbERR_BAD_PARAMETER, OUString() );
}
}
else
@@ -208,7 +208,7 @@ void SAL_CALL ScVbaPageSetup::setZoom( const uno::Any& zoom) throw (css::uno::Ru
zoom >>= pageScale;
if(( pageScale < ZOOM_IN )||( pageScale > ZOOM_MAX ))
{
- DebugHelper::exception(SbERR_BAD_PARAMETER, OUString() );
+ DebugHelper::runtimeexception(SbERR_BAD_PARAMETER, OUString() );
}
}
@@ -218,14 +218,14 @@ void SAL_CALL ScVbaPageSetup::setZoom( const uno::Any& zoom) throw (css::uno::Ru
mxPageProps->setPropertyValue("ScaleToPagesX", uno::makeAny( nScale ));
mxPageProps->setPropertyValue("ScaleToPagesY", uno::makeAny( nScale ));
}
- catch( beans::UnknownPropertyException& )
+ catch (const beans::UnknownPropertyException&)
{
if( pageScale == 0 )
{
- DebugHelper::exception(SbERR_BAD_PARAMETER, OUString() );
+ DebugHelper::runtimeexception(SbERR_BAD_PARAMETER, OUString() );
}
}
- catch( uno::Exception& )
+ catch (const uno::Exception&)
{
}
@@ -467,7 +467,7 @@ sal_Int32 SAL_CALL ScVbaPageSetup::getOrder() throw (css::uno::RuntimeException,
return order;
}
-void SAL_CALL ScVbaPageSetup::setOrder( sal_Int32 order) throw (css::uno::RuntimeException, std::exception)
+void SAL_CALL ScVbaPageSetup::setOrder(sal_Int32 order) throw (css::uno::RuntimeException, std::exception)
{
bool bOrder = true;
switch( order )
@@ -478,14 +478,14 @@ void SAL_CALL ScVbaPageSetup::setOrder( sal_Int32 order) throw (css::uno::Runtim
bOrder = false;
break;
default:
- DebugHelper::exception(SbERR_BAD_PARAMETER, OUString() );
+ DebugHelper::runtimeexception(SbERR_BAD_PARAMETER, OUString() );
}
try
{
mxPageProps->setPropertyValue("PrintDownFirst", uno::makeAny( bOrder ));
}
- catch( uno::Exception& )
+ catch (const uno::Exception&)
{
}
}
@@ -521,7 +521,7 @@ void SAL_CALL ScVbaPageSetup::setFirstPageNumber( sal_Int32 firstPageNumber) thr
aValue <<= (sal_Int16)firstPageNumber;
mxPageProps->setPropertyValue("FirstPageNumber", aValue );
}
- catch( uno::Exception& )
+ catch (const uno::Exception&)
{
}
}
@@ -534,7 +534,7 @@ sal_Bool SAL_CALL ScVbaPageSetup::getCenterVertically() throw (css::uno::Runtime
uno::Any aValue = mxPageProps->getPropertyValue("CenterVertically");
aValue >>= centerVertically;
}
- catch( uno::Exception& )
+ catch (const uno::Exception&)
{
}
return centerVertically;
@@ -546,7 +546,7 @@ void SAL_CALL ScVbaPageSetup::setCenterVertically( sal_Bool centerVertically) th
{
mxPageProps->setPropertyValue("CenterVertically", uno::makeAny( centerVertically ));
}
- catch( uno::Exception& )
+ catch (const uno::Exception&)
{
}
}
@@ -559,7 +559,7 @@ sal_Bool SAL_CALL ScVbaPageSetup::getCenterHorizontally() throw (css::uno::Runti
uno::Any aValue = mxPageProps->getPropertyValue("CenterHorizontally");
aValue >>= centerHorizontally;
}
- catch( uno::Exception& )
+ catch (const uno::Exception&)
{
}
return centerHorizontally;
@@ -571,7 +571,7 @@ void SAL_CALL ScVbaPageSetup::setCenterHorizontally( sal_Bool centerHorizontally
{
mxPageProps->setPropertyValue("CenterHorizontally", uno::makeAny( centerHorizontally ));
}
- catch( uno::Exception& )
+ catch (const uno::Exception&)
{
}
}
@@ -584,7 +584,7 @@ sal_Bool SAL_CALL ScVbaPageSetup::getPrintHeadings() throw (css::uno::RuntimeExc
uno::Any aValue = mxPageProps->getPropertyValue("PrintHeaders");
aValue >>= printHeadings;
}
- catch( uno::Exception& )
+ catch (const uno::Exception&)
{
}
return printHeadings;
diff --git a/sc/source/ui/vba/vbarange.cxx b/sc/source/ui/vba/vbarange.cxx
index bf8a374685e8..0908823b865d 100644
--- a/sc/source/ui/vba/vbarange.cxx
+++ b/sc/source/ui/vba/vbarange.cxx
@@ -4690,7 +4690,7 @@ ScVbaRange::Autofit() throw (script::BasicErrorException, uno::RuntimeException,
// throw an error
if ( !( mbIsColumns || mbIsRows ) )
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
ScDocShell* pDocShell = getDocShellFromRange( mxRange );
if ( pDocShell )
{
@@ -5125,7 +5125,7 @@ ScVbaRange::Item( const uno::Any& row, const uno::Any& column ) throw (script::B
if ( mbIsRows || mbIsColumns )
{
if ( column.hasValue() )
- DebugHelper::exception(SbERR_BAD_PARAMETER, OUString() );
+ DebugHelper::basicexception(SbERR_BAD_PARAMETER, OUString() );
uno::Reference< excel::XRange > xRange;
if ( mbIsColumns )
xRange = Columns( row );
@@ -5142,7 +5142,7 @@ ScVbaRange::AutoOutline( ) throw (script::BasicErrorException, uno::RuntimeExce
// #TODO #FIXME needs to check for summary row/col ( whatever they are )
// not valid for multi Area Addresses
if ( m_Areas->getCount() > 1 )
- DebugHelper::exception(SbERR_METHOD_FAILED, STR_ERRORMESSAGE_APPLIESTOSINGLERANGEONLY);
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, STR_ERRORMESSAGE_APPLIESTOSINGLERANGEONLY);
// So needs to either span an entire Row or a just be a single cell
// ( that contains a summary RowColumn )
// also the Single cell cause doesn't seem to be handled specially in
@@ -5157,7 +5157,7 @@ ScVbaRange::AutoOutline( ) throw (script::BasicErrorException, uno::RuntimeExce
xSheetOutline->autoOutline( thisAddress );
}
else
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
void SAL_CALL
@@ -5182,7 +5182,7 @@ void
ScVbaRange::groupUnGroup( bool bUnGroup ) throw ( script::BasicErrorException, uno::RuntimeException )
{
if ( m_Areas->getCount() > 1 )
- DebugHelper::exception(SbERR_METHOD_FAILED, STR_ERRORMESSAGE_APPLIESTOSINGLERANGEONLY);
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, STR_ERRORMESSAGE_APPLIESTOSINGLERANGEONLY);
table::TableOrientation nOrient = table::TableOrientation_ROWS;
if ( mbIsColumns )
nOrient = table::TableOrientation_COLUMNS;
@@ -5349,13 +5349,13 @@ ScVbaRange::SpecialCells( const uno::Any& _oType, const uno::Any& _oValue)
uno::Reference< excel::XRange > xUsedRange( getWorksheet()->getUsedRange() );
sal_Int32 nType = 0;
if ( !( _oType >>= nType ) )
- DebugHelper::exception(SbERR_BAD_PARAMETER, OUString() );
+ DebugHelper::basicexception(SbERR_BAD_PARAMETER, OUString() );
switch(nType)
{
case excel::XlCellType::xlCellTypeSameFormatConditions:
case excel::XlCellType::xlCellTypeAllValidation:
case excel::XlCellType::xlCellTypeSameValidation:
- DebugHelper::exception(SbERR_NOT_IMPLEMENTED, OUString());
+ DebugHelper::basicexception(SbERR_NOT_IMPLEMENTED, OUString());
break;
case excel::XlCellType::xlCellTypeBlanks:
case excel::XlCellType::xlCellTypeComments:
@@ -5413,11 +5413,11 @@ ScVbaRange::SpecialCells( const uno::Any& _oType, const uno::Any& _oValue)
break;
}
default:
- DebugHelper::exception(SbERR_BAD_PARAMETER, OUString() );
+ DebugHelper::basicexception(SbERR_BAD_PARAMETER, OUString() );
break;
}
if ( !pRangeToUse )
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString() );
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString() );
return pRangeToUse->SpecialCellsImpl( nType, _oValue );
}
@@ -5443,7 +5443,7 @@ static sal_Int32 lcl_getFormulaResultFlags(const uno::Any& aType) throw ( script
nRes = sheet::FormulaResult::STRING;
break;
default:
- DebugHelper::exception(SbERR_BAD_PARAMETER, OUString() );
+ DebugHelper::basicexception(SbERR_BAD_PARAMETER, OUString() );
}
return nRes;
}
@@ -5465,7 +5465,7 @@ ScVbaRange::SpecialCellsImpl( sal_Int32 nType, const uno::Any& _oValue) throw (
case excel::XlCellType::xlCellTypeSameValidation:
// Shouldn't get here ( should be filtered out by
// ScVbaRange::SpecialCells()
- DebugHelper::exception(SbERR_NOT_IMPLEMENTED, OUString());
+ DebugHelper::basicexception(SbERR_NOT_IMPLEMENTED, OUString());
break;
case excel::XlCellType::xlCellTypeBlanks:
xLocSheetCellRanges = xQuery->queryEmptyCells();
@@ -5488,7 +5488,7 @@ ScVbaRange::SpecialCellsImpl( sal_Int32 nType, const uno::Any& _oValue) throw (
xLocSheetCellRanges = xQuery->queryVisibleCells();
break;
default:
- DebugHelper::exception(SbERR_BAD_PARAMETER, OUString() );
+ DebugHelper::basicexception(SbERR_BAD_PARAMETER, OUString() );
break;
}
if (xLocSheetCellRanges.is())
@@ -5498,7 +5498,7 @@ ScVbaRange::SpecialCellsImpl( sal_Int32 nType, const uno::Any& _oValue) throw (
}
catch (uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, STR_ERRORMESSAGE_NOCELLSWEREFOUND);
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, STR_ERRORMESSAGE_NOCELLSWEREFOUND);
}
return xRange;
}
@@ -5568,16 +5568,16 @@ ScVbaRange::Subtotal( ::sal_Int32 _nGroupBy, ::sal_Int32 _nFunction, const uno::
aColumns[i].Function = sheet::GeneralFunction_VARP;
break;
default:
- DebugHelper::exception(SbERR_BAD_PARAMETER, OUString()) ;
+ DebugHelper::basicexception(SbERR_BAD_PARAMETER, OUString()) ;
return;
}
}
xSubDesc->addNew(aColumns, _nGroupBy - 1);
xSub->applySubTotals(xSubDesc, bDoReplace);
}
- catch (uno::Exception& )
+ catch (const uno::Exception&)
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
}
diff --git a/sc/source/ui/vba/vbastyle.cxx b/sc/source/ui/vba/vbastyle.cxx
index 16d05e70ab62..173a0c6652f9 100644
--- a/sc/source/ui/vba/vbastyle.cxx
+++ b/sc/source/ui/vba/vbastyle.cxx
@@ -44,11 +44,11 @@ lcl_getStyleProps( const OUString& sStyleName, const uno::Reference< frame::XMod
void ScVbaStyle::initialise() throw ( uno::RuntimeException, script::BasicErrorException )
{
if (!mxModel.is() )
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString( "XModel Interface could not be retrieved") );
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString( "XModel Interface could not be retrieved") );
uno::Reference< lang::XServiceInfo > xServiceInfo( mxPropertySet, uno::UNO_QUERY_THROW );
if ( !xServiceInfo->supportsService("com.sun.star.style.CellStyle") )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString() );
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString() );
}
mxStyle.set( mxPropertySet, uno::UNO_QUERY_THROW );
@@ -65,7 +65,7 @@ ScVbaStyle::ScVbaStyle( const uno::Reference< ov::XHelperInterface >& xParent, c
}
catch (const uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
}
@@ -77,7 +77,7 @@ ScVbaStyle::ScVbaStyle( const uno::Reference< XHelperInterface >& xParent, const
}
catch (const uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
}
@@ -108,7 +108,7 @@ ScVbaStyle::setNameLocal( const OUString& NameLocal ) throw (script::BasicErrorE
}
catch (const uno::Exception& e)
{
- DebugHelper::exception(e);
+ DebugHelper::basicexception(e);
}
}
@@ -122,7 +122,7 @@ ScVbaStyle::getNameLocal() throw (script::BasicErrorException, uno::RuntimeExcep
}
catch (const uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString() );
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString() );
}
return sName;
}
@@ -136,20 +136,20 @@ ScVbaStyle::Delete() throw (script::BasicErrorException, uno::RuntimeException,
}
catch (const uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
}
void SAL_CALL
ScVbaStyle::setMergeCells( const uno::Any& /*MergeCells*/ ) throw (script::BasicErrorException, uno::RuntimeException)
{
- DebugHelper::exception(SbERR_NOT_IMPLEMENTED, OUString());
+ DebugHelper::basicexception(SbERR_NOT_IMPLEMENTED, OUString());
}
uno::Any SAL_CALL
ScVbaStyle::getMergeCells( ) throw (script::BasicErrorException, uno::RuntimeException)
{
- DebugHelper::exception(SbERR_NOT_IMPLEMENTED, OUString());
+ DebugHelper::basicexception(SbERR_NOT_IMPLEMENTED, OUString());
return uno::Any();
}
diff --git a/sc/source/ui/vba/vbastyles.cxx b/sc/source/ui/vba/vbastyles.cxx
index 87f852e2d398..79fe5c11e003 100644
--- a/sc/source/ui/vba/vbastyles.cxx
+++ b/sc/source/ui/vba/vbastyles.cxx
@@ -41,7 +41,7 @@ ScVbaStyles::ScVbaStyles( const uno::Reference< XHelperInterface >& xParent, con
}
catch (uno::Exception& )
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
}
@@ -110,12 +110,12 @@ ScVbaStyles::Add( const OUString& _sName, const uno::Any& _aBasedOn ) throw (scr
}
else
{
- DebugHelper::exception(SbERR_BAD_ARGUMENT, OUString() );
+ DebugHelper::basicexception(SbERR_BAD_ARGUMENT, OUString() );
}
}
else
{
- DebugHelper::exception(SbERR_BAD_ARGUMENT, OUString());
+ DebugHelper::basicexception(SbERR_BAD_ARGUMENT, OUString());
}
}
@@ -131,9 +131,9 @@ ScVbaStyles::Add( const OUString& _sName, const uno::Any& _aBasedOn ) throw (scr
}
aRet.set( Item( uno::makeAny( _sName ), uno::Any() ), uno::UNO_QUERY_THROW );
}
- catch (uno::Exception& )
+ catch (const uno::Exception&)
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
return aRet;
}
@@ -146,9 +146,9 @@ ScVbaStyles::Delete(const OUString& _sStyleName) throw ( script::BasicErrorExcep
if (mxNameContainerCellStyles->hasByName( _sStyleName ) )
mxNameContainerCellStyles->removeByName( _sStyleName );
}
- catch (uno::Exception& )
+ catch (const uno::Exception&)
{
- DebugHelper::exception(SbERR_METHOD_FAILED, OUString());
+ DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString());
}
}
diff --git a/sc/source/ui/vba/vbawindow.cxx b/sc/source/ui/vba/vbawindow.cxx
index 417a425c04a1..b5daf6cf87d3 100644
--- a/sc/source/ui/vba/vbawindow.cxx
+++ b/sc/source/ui/vba/vbawindow.cxx
@@ -815,7 +815,7 @@ ScVbaWindow::setView( const uno::Any& _view) throw (uno::RuntimeException, std::
nSlot = FID_PAGEBREAKMODE;
break;
default:
- DebugHelper::exception(SbERR_BAD_PARAMETER, OUString() );
+ DebugHelper::runtimeexception(SbERR_BAD_PARAMETER, OUString() );
}
// !! TODO !! get view shell from controller
ScTabViewShell* pViewShell = excel::getBestViewShell( m_xModel );
diff --git a/sc/source/ui/vba/vbaworksheet.cxx b/sc/source/ui/vba/vbaworksheet.cxx
index ad5a4a3e1c9c..ccf2d02c5667 100644
--- a/sc/source/ui/vba/vbaworksheet.cxx
+++ b/sc/source/ui/vba/vbaworksheet.cxx
@@ -370,7 +370,7 @@ ScVbaWorksheet::setEnableSelection( sal_Int32 nSelection ) throw (uno::RuntimeEx
(nSelection != excel::XlEnableSelection::xlUnlockedCells) &&
(nSelection != excel::XlEnableSelection::xlNoSelection) )
{
- DebugHelper::exception(SbERR_BAD_PARAMETER, OUString() );
+ DebugHelper::runtimeexception(SbERR_BAD_PARAMETER, OUString() );
}
uno::Reference <sheet::XSpreadsheetDocument> xSpreadDoc( getModel(), uno::UNO_QUERY_THROW );