summaryrefslogtreecommitdiff
path: root/xmlscript
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-10-01 17:21:00 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-10-01 17:35:15 +0200
commit389beae2ff13286e455488d7e77d14f7aa770818 (patch)
tree6c0ea70fbf11afcb4767a58e1362fc24548a73a5 /xmlscript
parent557737b748e4d1ffc548123a58b4fbcb4879999b (diff)
xmlscript: std::auto_ptr -> std::unique_ptr
Change-Id: I203b84180d3614a440b37af87223bbf5a6a0f21a
Diffstat (limited to 'xmlscript')
-rw-r--r--xmlscript/source/xml_helper/xml_impctx.cxx2
1 files changed, 1 insertions, 1 deletions
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 );