From 51b45df6bba163dec7ba91c700de695ad517e5dd Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 10 Nov 2015 10:29:15 +0100 Subject: loplugin:nullptr (automatic rewrite) Change-Id: I8690de2cb68dcfedc9f2239ce66cea06fd94bc16 --- xmloff/source/text/txtvfldi.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xmloff/source/text/txtvfldi.cxx') diff --git a/xmloff/source/text/txtvfldi.cxx b/xmloff/source/text/txtvfldi.cxx index 9ee5e6933899..0a35e2d7eb99 100644 --- a/xmloff/source/text/txtvfldi.cxx +++ b/xmloff/source/text/txtvfldi.cxx @@ -780,7 +780,7 @@ SvXMLImportContext* XMLVariableDeclsImportContext::CreateChildContext( const Reference & xAttrList ) { enum XMLTokenEnum eElementName; - SvXMLImportContext* pImportContext = NULL; + SvXMLImportContext* pImportContext = nullptr; if( XML_NAMESPACE_TEXT == nPrefix ) { @@ -810,7 +810,7 @@ SvXMLImportContext* XMLVariableDeclsImportContext::CreateChildContext( } // if no context was created, use default context - if (NULL == pImportContext) { + if (nullptr == pImportContext) { pImportContext = SvXMLImportContext::CreateChildContext(nPrefix, rLocalName, xAttrList); -- cgit