summaryrefslogtreecommitdiff
path: root/scaddins/source/analysis/analysis.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'scaddins/source/analysis/analysis.cxx')
-rw-r--r--scaddins/source/analysis/analysis.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/scaddins/source/analysis/analysis.cxx b/scaddins/source/analysis/analysis.cxx
index 04988972edbd..92fb4e64bafa 100644
--- a/scaddins/source/analysis/analysis.cxx
+++ b/scaddins/source/analysis/analysis.cxx
@@ -45,7 +45,7 @@ using namespace std;
extern "C" SAL_DLLPUBLIC_EXPORT void* SAL_CALL analysis_component_getFactory(
const sal_Char* pImplName, void* pServiceManager, void* /*pRegistryKey*/ )
{
- void* pRet = 0;
+ void* pRet = nullptr;
if( pServiceManager && OUString::createFromAscii( pImplName ) == AnalysisAddIn::getImplementationName_Static() )
{
@@ -134,22 +134,22 @@ void AnalysisAddIn::InitData()
}
else
{
- pFD = NULL;
+ pFD = nullptr;
}
if( pDefLocales )
{
delete pDefLocales;
- pDefLocales = NULL;
+ pDefLocales = nullptr;
}
}
AnalysisAddIn::AnalysisAddIn( const uno::Reference< uno::XComponentContext >& xContext ) :
- pDefLocales( NULL ),
- pFD( NULL ),
- pFactDoubles( NULL ),
- pCDL( NULL ),
- pResMgr( NULL ),
+ pDefLocales( nullptr ),
+ pFD( nullptr ),
+ pFactDoubles( nullptr ),
+ pCDL( nullptr ),
+ pResMgr( nullptr ),
aAnyConv( xContext )
{
}