summaryrefslogtreecommitdiff
path: root/framework/source/xml
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-11 09:07:48 +0200
committerNoel Grandin <noel@peralex.com>2015-11-11 11:35:41 +0200
commit1459f127711ba11e0ce044d9fb70d1941b5c3209 (patch)
tree049d2c5bfeb8b38080970ad500e3f6fc94d8e981 /framework/source/xml
parentaef8a59d51954f1858296ef23f70c8bd65c77c1c (diff)
framework: boost::ptr_vector->std::vector<std::unique_ptr>
Change-Id: I10801343e65646b92eb0a6256cd7bfbf5c84c854
Diffstat (limited to 'framework/source/xml')
-rw-r--r--framework/source/xml/imagesdocumenthandler.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/source/xml/imagesdocumenthandler.cxx b/framework/source/xml/imagesdocumenthandler.cxx
index 89c3513c9fb2..0ba98b3d353d 100644
--- a/framework/source/xml/imagesdocumenthandler.cxx
+++ b/framework/source/xml/imagesdocumenthandler.cxx
@@ -510,7 +510,7 @@ void SAL_CALL OReadImagesDocumentHandler::endElement(const OUString& aName)
if ( m_pImages )
{
if ( m_aImageList.pImageList )
- m_aImageList.pImageList->push_back( m_pImages );
+ m_aImageList.pImageList->push_back( std::unique_ptr<ImageListItemDescriptor>(m_pImages) );
m_pImages = nullptr;
}
m_bImagesStartFound = false;
@@ -642,7 +642,7 @@ void OWriteImagesDocumentHandler::WriteImagesDocument() throw
for ( size_t i = 0; i < m_aImageListsItems.pImageList->size(); i++ )
{
- const ImageListItemDescriptor* pImageItems = &(*pImageList)[i];
+ const ImageListItemDescriptor* pImageItems = (*pImageList)[i].get();
WriteImageList( pImageItems );
}
}