From 6de82da0c154a0e8a353125aa80a61779abfd3ba Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 10 Nov 2015 10:29:37 +0100 Subject: loplugin:nullptr (automatic rewrite) Change-Id: Ie91fbfc9369fe9f2de1cf12c746598a80c2233c1 --- xmlscript/source/misc/unoservices.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'xmlscript/source/misc') diff --git a/xmlscript/source/misc/unoservices.cxx b/xmlscript/source/misc/unoservices.cxx index c3eaac582e6a..8d89cef7e758 100644 --- a/xmlscript/source/misc/unoservices.cxx +++ b/xmlscript/source/misc/unoservices.cxx @@ -30,29 +30,29 @@ namespace xmlscript { create_DocumentHandlerImpl, getImplementationName_DocumentHandlerImpl, getSupportedServiceNames_DocumentHandlerImpl, ::cppu::createSingleComponentFactory, - 0, 0 + nullptr, 0 }, { create_XMLBasicExporter, getImplementationName_XMLBasicExporter, getSupportedServiceNames_XMLBasicExporter, ::cppu::createSingleComponentFactory, - 0, 0 + nullptr, 0 }, { create_XMLOasisBasicExporter, getImplementationName_XMLOasisBasicExporter, getSupportedServiceNames_XMLOasisBasicExporter, ::cppu::createSingleComponentFactory, - 0, 0 + nullptr, 0 }, { create_XMLBasicImporter, getImplementationName_XMLBasicImporter, getSupportedServiceNames_XMLBasicImporter, ::cppu::createSingleComponentFactory, - 0, 0 + nullptr, 0 }, { create_XMLOasisBasicImporter, getImplementationName_XMLOasisBasicImporter, getSupportedServiceNames_XMLOasisBasicImporter, ::cppu::createSingleComponentFactory, - 0, 0 + nullptr, 0 }, - { 0, 0, 0, 0, 0, 0 } + { nullptr, nullptr, nullptr, nullptr, nullptr, 0 } }; } -- cgit