diff options
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/test/deployment/active/active_native.cxx | 6 | ||||
-rw-r--r-- | desktop/test/deployment/passive/passive_native.cxx | 6 |
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 } }; } |