diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:13:11 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:31:21 +0100 |
commit | bf3f8403029fcea9ce7d53078697efb24c09a75b (patch) | |
tree | 3f99977435c7794529d3975c798afceb86444deb /cppuhelper/source/servicemanager.hxx | |
parent | 4730b58d9989512ed25790768ba78decfde7d667 (diff) |
loplugin:nullptr (automatic rewrite)
Change-Id: I62a63915dfc0bced2cd8ffe3999cbde5c4d97b0b
Diffstat (limited to 'cppuhelper/source/servicemanager.hxx')
-rw-r--r-- | cppuhelper/source/servicemanager.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppuhelper/source/servicemanager.hxx b/cppuhelper/source/servicemanager.hxx index d888d0c75179..d7f8f9056c17 100644 --- a/cppuhelper/source/servicemanager.hxx +++ b/cppuhelper/source/servicemanager.hxx @@ -108,7 +108,7 @@ public: new ImplementationInfo( name, loader, uri, environment, constructorName, prefix, alienContext, rdbFile)), - constructor(0), status(STATUS_NEW), dispose(true) + constructor(nullptr), status(STATUS_NEW), dispose(true) {} Implementation( @@ -119,7 +119,7 @@ public: theFactory2, css::uno::Reference< css::lang::XComponent > const & theComponent): - info(new ImplementationInfo(name)), constructor(0), + info(new ImplementationInfo(name)), constructor(nullptr), factory1(theFactory1), factory2(theFactory2), component(theComponent), status(STATUS_LOADED), dispose(true) { assert(theFactory1.is() || theFactory2.is()); } |