summaryrefslogtreecommitdiff
path: root/xmlhelp/source/cxxhelp/provider/provider.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-10 10:29:08 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-10 10:32:01 +0100
commit87bae0e188aa3ce3c31d1aa91707c0fad6b81b65 (patch)
tree0d57a266b067952edd63e7cd0b3caa07d8bbd87e /xmlhelp/source/cxxhelp/provider/provider.cxx
parent42e2262cdd05718a3286f813da6f53805846da02 (diff)
loplugin:nullptr (automatic rewrite)
Change-Id: Ibdc68ac3fa6e1424337096c720c8c9605b767480
Diffstat (limited to 'xmlhelp/source/cxxhelp/provider/provider.cxx')
-rw-r--r--xmlhelp/source/cxxhelp/provider/provider.cxx4
1 files changed, 2 insertions, 2 deletions
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() );