summaryrefslogtreecommitdiff
path: root/remotebridges
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-10 10:21:20 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-10 10:31:34 +0100
commit70bd790b62f79ad8bbdccdf9c743dfca10ec19aa (patch)
tree85f76a21a8cba7b5e008d148e0a1e9406aa97045 /remotebridges
parent16f0c1315bf29b9da342d669709da28eb22b8390 (diff)
loplugin:nullptr (automatic rewrite)
Change-Id: I9b9249441dd69c5fab05ae0ede8dec461a1879f3
Diffstat (limited to 'remotebridges')
-rw-r--r--remotebridges/source/unourl_resolver/unourl_resolver.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/remotebridges/source/unourl_resolver/unourl_resolver.cxx b/remotebridges/source/unourl_resolver/unourl_resolver.cxx
index 17ccc5922fb0..21a96de4204e 100644
--- a/remotebridges/source/unourl_resolver/unourl_resolver.cxx
+++ b/remotebridges/source/unourl_resolver/unourl_resolver.cxx
@@ -120,7 +120,7 @@ Reference< XInterface > ResolverImpl::resolve( const OUString & rUnoUrl )
}
catch (const rtl::MalformedUriException & rEx)
{
- throw ConnectionSetupException(rEx.getMessage(), 0);
+ throw ConnectionSetupException(rEx.getMessage(), nullptr);
}
Reference< XConnector > xConnector(
@@ -159,9 +159,9 @@ static const struct ImplementationEntry g_entries[] =
{
ResolverImpl_create, resolver_getImplementationName,
resolver_getSupportedServiceNames, createSingleComponentFactory,
- 0, 0
+ nullptr, 0
},
- { 0, 0, 0, 0, 0, 0 }
+ { nullptr, nullptr, nullptr, nullptr, nullptr, 0 }
};
extern "C" SAL_DLLPUBLIC_EXPORT void * SAL_CALL uuresolver_component_getFactory(