Kaydet (Commit) 5a137c4a authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:nullptr

Change-Id: I001d3cefea8083e0f0d1a965b26ce867f384aea0
üst ef7e9d5c
...@@ -234,11 +234,11 @@ void Dispatch::dispatch( ...@@ -234,11 +234,11 @@ void Dispatch::dispatch(
static cppu::ImplementationEntry const services[] = { static cppu::ImplementationEntry const services[] = {
{ &Provider::static_create, &Provider::static_getImplementationName, { &Provider::static_create, &Provider::static_getImplementationName,
&Provider::static_getSupportedServiceNames, &Provider::static_getSupportedServiceNames,
&cppu::createSingleComponentFactory, 0, 0 }, &cppu::createSingleComponentFactory, nullptr, 0 },
{ &Dispatch::static_create, &Dispatch::static_getImplementationName, { &Dispatch::static_create, &Dispatch::static_getImplementationName,
&Dispatch::static_getSupportedServiceNames, &Dispatch::static_getSupportedServiceNames,
&cppu::createSingleComponentFactory, 0, 0 }, &cppu::createSingleComponentFactory, nullptr, 0 },
{ 0, 0, 0, 0, 0, 0 } { nullptr, nullptr, nullptr, nullptr, nullptr, 0 }
}; };
} }
......
...@@ -231,11 +231,11 @@ void Dispatch::dispatch( ...@@ -231,11 +231,11 @@ void Dispatch::dispatch(
static cppu::ImplementationEntry const services[] = { static cppu::ImplementationEntry const services[] = {
{ &Provider::static_create, &Provider::static_getImplementationName, { &Provider::static_create, &Provider::static_getImplementationName,
&Provider::static_getSupportedServiceNames, &Provider::static_getSupportedServiceNames,
&cppu::createSingleComponentFactory, 0, 0 }, &cppu::createSingleComponentFactory, nullptr, 0 },
{ &Dispatch::static_create, &Dispatch::static_getImplementationName, { &Dispatch::static_create, &Dispatch::static_getImplementationName,
&Dispatch::static_getSupportedServiceNames, &Dispatch::static_getSupportedServiceNames,
&cppu::createSingleComponentFactory, 0, 0 }, &cppu::createSingleComponentFactory, nullptr, 0 },
{ 0, 0, 0, 0, 0, 0 } { nullptr, nullptr, nullptr, nullptr, nullptr, 0 }
}; };
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment