From 968f6a7f0293c08a73807603f3cb294e4b50bad8 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 19 Jan 2017 09:11:39 +0200 Subject: new loplugin: useuniqueptr: unotools..xmlscript Change-Id: I6966d44cff644112dd837adfe7d9c4f459457271 Reviewed-on: https://gerrit.libreoffice.org/33298 Tested-by: Jenkins Reviewed-by: Noel Grandin --- xmlscript/source/xmllib_imexp/xmllib_import.cxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'xmlscript/source/xmllib_imexp') diff --git a/xmlscript/source/xmllib_imexp/xmllib_import.cxx b/xmlscript/source/xmllib_imexp/xmllib_import.cxx index 4dfe36501aef..2bf8b167edb6 100644 --- a/xmlscript/source/xmllib_imexp/xmllib_import.cxx +++ b/xmlscript/source/xmllib_imexp/xmllib_import.cxx @@ -198,7 +198,7 @@ void LibrariesElement::endElement() throw (xml::sax::SAXException, RuntimeException, std::exception) { sal_Int32 nLibCount = mxImport->mpLibArray->mnLibCount = (sal_Int32)mLibDescriptors.size(); - mxImport->mpLibArray->mpLibs = new LibDescriptor[ nLibCount ]; + mxImport->mpLibArray->mpLibs.reset( new LibDescriptor[ nLibCount ] ); for( sal_Int32 i = 0 ; i < nLibCount ; i++ ) { @@ -264,12 +264,11 @@ SAL_CALL importLibrary( LibDescriptor& rLib ) LibDescriptorArray::LibDescriptorArray( sal_Int32 nLibCount ) { mnLibCount = nLibCount; - mpLibs = new LibDescriptor[ mnLibCount ]; + mpLibs.reset( new LibDescriptor[ mnLibCount ] ); } LibDescriptorArray::~LibDescriptorArray() { - delete[] mpLibs; } } -- cgit