From 389beae2ff13286e455488d7e77d14f7aa770818 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 1 Oct 2014 17:21:00 +0200 Subject: xmlscript: std::auto_ptr -> std::unique_ptr Change-Id: I203b84180d3614a440b37af87223bbf5a6a0f21a --- xmlscript/source/xml_helper/xml_impctx.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xmlscript') diff --git a/xmlscript/source/xml_helper/xml_impctx.cxx b/xmlscript/source/xml_helper/xml_impctx.cxx index f38d2108c9dc..aae936ae865b 100644 --- a/xmlscript/source/xml_helper/xml_impctx.cxx +++ b/xmlscript/source/xml_helper/xml_impctx.cxx @@ -496,7 +496,7 @@ void DocumentHandlerImpl::startElement( Reference< xml::input::XAttributes > xAttributes; sal_Int32 nUid; OUString aLocalName; - ::std::auto_ptr< ElementEntry > elementEntry( new ElementEntry ); + ::std::unique_ptr< ElementEntry > elementEntry( new ElementEntry ); { // guard start: MGuard aGuard( m_pMutex ); -- cgit