diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-05-03 16:35:30 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-05-03 16:35:30 +0200 |
commit | 6e717957b25f3d4a38d9256c0088828d6c709371 (patch) | |
tree | e161aa5e350d5cd14380c406455e41fa213945cd /connectivity/source/drivers/ado | |
parent | 69a62d4dc1ffe9ee61405f3715d3d523347deb6b (diff) |
NULL -> nullptr
Change-Id: I7e4e36fbff89cb45c01a11dc70c4e6f17fe3bc38
Diffstat (limited to 'connectivity/source/drivers/ado')
-rw-r--r-- | connectivity/source/drivers/ado/Aolevariant.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/drivers/ado/Aolevariant.cxx b/connectivity/source/drivers/ado/Aolevariant.cxx index e3728bc72675..44c71af4a9b6 100644 --- a/connectivity/source/drivers/ado/Aolevariant.cxx +++ b/connectivity/source/drivers/ado/Aolevariant.cxx @@ -673,7 +673,7 @@ SAFEARRAY* OLEVariant::getUI1SAFEARRAYPtr() const { case VT_EMPTY: case VT_NULL: - aValue.setValue(NULL, Type()); + aValue.setValue(nullptr, Type()); break; case VT_I2: aValue.setValue( & iVal, cppu::UnoType<sal_Int16>::get()); @@ -729,7 +729,7 @@ SAFEARRAY* OLEVariant::getUI1SAFEARRAYPtr() const aValue.setValue( & uintVal, cppu::UnoType<sal_uInt32>::get()); break; case VT_VOID: - aValue.setValue( NULL, Type()); + aValue.setValue( nullptr, Type()); break; case VT_DECIMAL: { |