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/defaultbootstrap.cxx | |
parent | 4730b58d9989512ed25790768ba78decfde7d667 (diff) |
loplugin:nullptr (automatic rewrite)
Change-Id: I62a63915dfc0bced2cd8ffe3999cbde5c4d97b0b
Diffstat (limited to 'cppuhelper/source/defaultbootstrap.cxx')
-rw-r--r-- | cppuhelper/source/defaultbootstrap.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cppuhelper/source/defaultbootstrap.cxx b/cppuhelper/source/defaultbootstrap.cxx index 1fbbf8f541fc..bede6b518af0 100644 --- a/cppuhelper/source/defaultbootstrap.cxx +++ b/cppuhelper/source/defaultbootstrap.cxx @@ -49,7 +49,7 @@ css::uno::Reference< css::uno::XComponentContext > cppu::defaultBootstrap_InitialComponentContext(rtl::OUString const & iniUri) { rtl::Bootstrap bs(iniUri); - if (bs.getHandle() == 0) { + if (bs.getHandle() == nullptr) { throw css::uno::DeploymentException( "Cannot open uno ini " + iniUri); } |