summaryrefslogtreecommitdiffstats
path: root/connectivity/source/commontools/parameters.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-10 10:12:07 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-10 10:31:20 +0100
commitc0bd59c15b4a6e8523693c8a354456b9fadb8832 (patch)
tree67a35c16019355b6eac3faff74ce63d44eddfa96 /connectivity/source/commontools/parameters.cxx
parentloplugin:nullptr (automatic rewrite) (diff)
downloadcore-c0bd59c15b4a6e8523693c8a354456b9fadb8832.tar.gz
core-c0bd59c15b4a6e8523693c8a354456b9fadb8832.zip
loplugin:nullptr (automatic rewrite)
Change-Id: Iefeeb51c2b101c097a8d77a4625f84baf1f2da44
Diffstat (limited to 'connectivity/source/commontools/parameters.cxx')
-rw-r--r--connectivity/source/commontools/parameters.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/commontools/parameters.cxx b/connectivity/source/commontools/parameters.cxx
index 20fce17e255c..dd87288b6076 100644
--- a/connectivity/source/commontools/parameters.cxx
+++ b/connectivity/source/commontools/parameters.cxx
@@ -59,7 +59,7 @@ namespace dbtools
:m_rMutex ( _rMutex )
,m_aParameterListeners( _rMutex )
,m_xContext ( _rxContext )
- ,m_pOuterParameters ( NULL )
+ ,m_pOuterParameters ( nullptr )
,m_nInnerCount ( 0 )
,m_bUpToDate ( false )
{
@@ -98,7 +98,7 @@ namespace dbtools
m_xInnerParamColumns.clear();
if ( m_pOuterParameters.is() )
m_pOuterParameters->dispose();
- m_pOuterParameters = NULL;
+ m_pOuterParameters = nullptr;
m_nInnerCount = 0;
ParameterInformation aEmptyInfo;
m_aParameterInformation.swap( aEmptyInfo );
@@ -299,7 +299,7 @@ namespace dbtools
// remember meta information about this new parameter
::std::pair< ParameterInformation::iterator, bool > aInsertionPos =
m_aParameterInformation.insert(
- ParameterInformation::value_type( sNewParamName, ParameterMetaData( NULL ) )
+ ParameterInformation::value_type( sNewParamName, ParameterMetaData( nullptr ) )
);
OSL_ENSURE( aInsertionPos.second, "ParameterManager::classifyLinks: there already was a parameter with this name!" );
aInsertionPos.first->second.eType = eLinkedByColumnName;