summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-13 15:36:39 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-13 15:36:39 +0100
commit5a137c4a3da04d079c236984f72cff8701abdf8a (patch)
treecd3c12a2d472c2edddb58529b1b677f426c6f6d5 /desktop
parentef7e9d5c8d64ec168927267067ffb4b2a539086d (diff)
loplugin:nullptr
Change-Id: I001d3cefea8083e0f0d1a965b26ce867f384aea0
Diffstat (limited to 'desktop')
-rw-r--r--desktop/test/deployment/active/active_native.cxx6
-rw-r--r--desktop/test/deployment/passive/passive_native.cxx6
2 files changed, 6 insertions, 6 deletions
diff --git a/desktop/test/deployment/active/active_native.cxx b/desktop/test/deployment/active/active_native.cxx
index 06da72a3b274..5baf91c14de9 100644
--- a/desktop/test/deployment/active/active_native.cxx
+++ b/desktop/test/deployment/active/active_native.cxx
@@ -234,11 +234,11 @@ void Dispatch::dispatch(
static cppu::ImplementationEntry const services[] = {
{ &Provider::static_create, &Provider::static_getImplementationName,
&Provider::static_getSupportedServiceNames,
- &cppu::createSingleComponentFactory, 0, 0 },
+ &cppu::createSingleComponentFactory, nullptr, 0 },
{ &Dispatch::static_create, &Dispatch::static_getImplementationName,
&Dispatch::static_getSupportedServiceNames,
- &cppu::createSingleComponentFactory, 0, 0 },
- { 0, 0, 0, 0, 0, 0 }
+ &cppu::createSingleComponentFactory, nullptr, 0 },
+ { nullptr, nullptr, nullptr, nullptr, nullptr, 0 }
};
}
diff --git a/desktop/test/deployment/passive/passive_native.cxx b/desktop/test/deployment/passive/passive_native.cxx
index 70b11ccebc03..41970549eabb 100644
--- a/desktop/test/deployment/passive/passive_native.cxx
+++ b/desktop/test/deployment/passive/passive_native.cxx
@@ -231,11 +231,11 @@ void Dispatch::dispatch(
static cppu::ImplementationEntry const services[] = {
{ &Provider::static_create, &Provider::static_getImplementationName,
&Provider::static_getSupportedServiceNames,
- &cppu::createSingleComponentFactory, 0, 0 },
+ &cppu::createSingleComponentFactory, nullptr, 0 },
{ &Dispatch::static_create, &Dispatch::static_getImplementationName,
&Dispatch::static_getSupportedServiceNames,
- &cppu::createSingleComponentFactory, 0, 0 },
- { 0, 0, 0, 0, 0, 0 }
+ &cppu::createSingleComponentFactory, nullptr, 0 },
+ { nullptr, nullptr, nullptr, nullptr, nullptr, 0 }
};
}