summaryrefslogtreecommitdiff
path: root/connectivity/source/sdbcx/VIndex.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/sdbcx/VIndex.cxx
parent047239d5ca229bb8ad85a2d9fcd2ae7b6f35b976 (diff)
loplugin:nullptr (automatic rewrite)
Change-Id: Iefeeb51c2b101c097a8d77a4625f84baf1f2da44
Diffstat (limited to 'connectivity/source/sdbcx/VIndex.cxx')
-rw-r--r--connectivity/source/sdbcx/VIndex.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/sdbcx/VIndex.cxx b/connectivity/source/sdbcx/VIndex.cxx
index cebffa3f5121..67e05499f9ed 100644
--- a/connectivity/source/sdbcx/VIndex.cxx
+++ b/connectivity/source/sdbcx/VIndex.cxx
@@ -66,7 +66,7 @@ OIndex::OIndex(bool _bCase) : ODescriptor_BASE(m_aMutex)
,m_IsUnique(false)
,m_IsPrimaryKeyIndex(false)
,m_IsClustered(false)
- ,m_pColumns(NULL)
+ ,m_pColumns(nullptr)
{
}
@@ -81,7 +81,7 @@ OIndex::OIndex( const OUString& _Name,
,m_IsUnique(_isUnique)
,m_IsPrimaryKeyIndex(_isPrimaryKeyIndex)
,m_IsClustered(_isClustered)
- ,m_pColumns(NULL)
+ ,m_pColumns(nullptr)
{
m_Name = _Name;
}