diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-05-03 15:56:18 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-05-03 15:56:18 +0200 |
commit | 69a62d4dc1ffe9ee61405f3715d3d523347deb6b (patch) | |
tree | 1b35b2154e4c337461ffcd4a09dff1bf1bc65b73 /extensions | |
parent | a6960391accbe238a78c9b128342e4ad52a68a8b (diff) |
NULL -> nullptr
Change-Id: I94d0df867b6ef59cf6485e4cee7ac655155f9b87
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/ole/unoconversionutilities.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/ole/unoconversionutilities.hxx b/extensions/source/ole/unoconversionutilities.hxx index a22157b6cd55..e090dd0095fc 100644 --- a/extensions/source/ole/unoconversionutilities.hxx +++ b/extensions/source/ole/unoconversionutilities.hxx @@ -1713,7 +1713,7 @@ Any UnoConversionUtilities<T>::createOleObjectWrapper(VARIANT* pVar, const Type& if( aType.getTypeClass() == TypeClass_INTERFACE) ret.setValue( &xInt, aType); else if( aType.getTypeClass() == TypeClass_STRUCT) - ret.setValue( NULL, aType); + ret.setValue( nullptr, aType); else ret <<= xInt; return ret; |