diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-05-03 15:45:13 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-05-03 15:45:13 +0200 |
commit | a6960391accbe238a78c9b128342e4ad52a68a8b (patch) | |
tree | d09bf8feaa40c411929948ea98bc5391783b41e2 /extensions | |
parent | 46410f7e5b79cf42aa52d7a81fe4608c34601ce6 (diff) |
NULL -> nullptr
Change-Id: I0bd2dc2e2ed1f699133e3e7753359b969fbee322
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/ole/unoconversionutilities.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/extensions/source/ole/unoconversionutilities.hxx b/extensions/source/ole/unoconversionutilities.hxx index 1fdb038f4afc..a22157b6cd55 100644 --- a/extensions/source/ole/unoconversionutilities.hxx +++ b/extensions/source/ole/unoconversionutilities.hxx @@ -398,7 +398,7 @@ void UnoConversionUtilities<T>::variantToAny( const VARIANTARG* pArg, Any& rAny, } break; case TypeClass_VOID: - rAny.setValue(NULL,Type()); + rAny.setValue(nullptr,Type()); break; case TypeClass_ANY: // Any // There could be a JScript Array that needs special handling @@ -1478,10 +1478,10 @@ void UnoConversionUtilities<T>::variantToAny( const VARIANT* pVariant, Any& rAny switch (var.vt) { case VT_EMPTY: - rAny.setValue(NULL, Type()); + rAny.setValue(nullptr, Type()); break; case VT_NULL: - rAny.setValue(NULL, Type()); + rAny.setValue(nullptr, Type()); break; case VT_I2: rAny.setValue( & var.iVal, cppu::UnoType<sal_Int16>::get()); @@ -1580,7 +1580,7 @@ void UnoConversionUtilities<T>::variantToAny( const VARIANT* pVariant, Any& rAny rAny.setValue( & var.uintVal, cppu::UnoType<sal_uInt32>::get()); break; case VT_VOID: - rAny.setValue( NULL, Type()); + rAny.setValue( nullptr, Type()); break; case VT_DECIMAL: { |