diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:14:10 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:31:23 +0100 |
commit | 6bab3811c374e3185ea07e7cb0d08f8b90ef81aa (patch) | |
tree | 76696214dc35e4f74b337b6788a1bf5b2f0271e0 /dtrans | |
parent | 90122cfb7e684ba7f0683f4173028406ee57b7cb (diff) |
loplugin:nullptr (automatic rewrite)
Change-Id: Ib37c3e0677ae100c6f282126a0ed45f68702fc37
Diffstat (limited to 'dtrans')
-rw-r--r-- | dtrans/source/cnttype/mctfentry.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dtrans/source/cnttype/mctfentry.cxx b/dtrans/source/cnttype/mctfentry.cxx index d7620737b685..d869a7ec6e0b 100644 --- a/dtrans/source/cnttype/mctfentry.cxx +++ b/dtrans/source/cnttype/mctfentry.cxx @@ -59,7 +59,7 @@ extern "C" SAL_DLLPUBLIC_EXPORT void* SAL_CALL mcnttype_component_getFactory( const sal_Char* pImplName, void* pSrvManager, void* /*pRegistryKey*/ ) { - void* pRet = 0; + void* pRet = nullptr; if ( pSrvManager && ( 0 == rtl_str_compare( pImplName, MIMECONTENTTYPEFACTORY_IMPL_NAME ) ) ) { |