From 87bae0e188aa3ce3c31d1aa91707c0fad6b81b65 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 10 Nov 2015 10:29:08 +0100 Subject: loplugin:nullptr (automatic rewrite) Change-Id: Ibdc68ac3fa6e1424337096c720c8c9605b767480 --- xmlhelp/source/cxxhelp/provider/provider.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xmlhelp/source/cxxhelp/provider/provider.cxx') diff --git a/xmlhelp/source/cxxhelp/provider/provider.cxx b/xmlhelp/source/cxxhelp/provider/provider.cxx index 5b16fe055032..2df4bb58b05c 100644 --- a/xmlhelp/source/cxxhelp/provider/provider.cxx +++ b/xmlhelp/source/cxxhelp/provider/provider.cxx @@ -49,7 +49,7 @@ ContentProvider::ContentProvider( const uno::Reference< uno::XComponentContext > : ::ucbhelper::ContentProviderImplHelper( rxContext ) , isInitialized( false ) , m_aScheme(MYUCP_URL_SCHEME) - , m_pDatabases( 0 ) + , m_pDatabases( nullptr ) { } @@ -97,7 +97,7 @@ css::uno::Sequence< sal_Int8 > SAL_CALL ContentProvider::getImplementationId() css::uno::Sequence< css::uno::Type > SAL_CALL ContentProvider::getTypes() throw( css::uno::RuntimeException, std::exception ) { - static cppu::OTypeCollection* pCollection = NULL; + static cppu::OTypeCollection* pCollection = nullptr; if ( !pCollection ) { osl::Guard< osl::Mutex > aGuard( osl::Mutex::getGlobalMutex() ); -- cgit