diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:13:53 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:31:22 +0100 |
commit | 72c48b716640c76f0a8fa49341ce3b0099004991 (patch) | |
tree | 6aa8da1631e3d18272bd39ab55111885ab339b45 /desktop/source/offacc/acceptor.cxx | |
parent | 89c4edc13f203db1641c63e22774262bbe61f36f (diff) |
loplugin:nullptr (automatic rewrite)
Change-Id: I8204a300c98b891a842ef2e40b65f0810dd7817a
Diffstat (limited to 'desktop/source/offacc/acceptor.cxx')
-rw-r--r-- | desktop/source/offacc/acceptor.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/offacc/acceptor.cxx b/desktop/source/offacc/acceptor.cxx index 5d43c9b1ceab..2702dede009c 100644 --- a/desktop/source/offacc/acceptor.cxx +++ b/desktop/source/offacc/acceptor.cxx @@ -45,7 +45,7 @@ extern "C" void offacc_workerfunc (void * acc) } Acceptor::Acceptor( const Reference< XComponentContext >& rxContext ) - : m_thread(NULL) + : m_thread(nullptr) , m_rContext(rxContext) , m_bInit(false) , m_bDying(false) @@ -267,7 +267,7 @@ using namespace desktop; SAL_DLLPUBLIC_EXPORT void * SAL_CALL offacc_component_getFactory(char const *pImplementationName, void *pServiceManager, void *) { - void* pReturn = NULL ; + void* pReturn = nullptr ; if ( pImplementationName && pServiceManager ) { // Define variables which are used in following macros. |