summaryrefslogtreecommitdiff
path: root/writerfilter/source/ooxml/OOXMLDocumentImpl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'writerfilter/source/ooxml/OOXMLDocumentImpl.cxx')
-rw-r--r--writerfilter/source/ooxml/OOXMLDocumentImpl.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/writerfilter/source/ooxml/OOXMLDocumentImpl.cxx b/writerfilter/source/ooxml/OOXMLDocumentImpl.cxx
index d9900ea7e4fc..c576aa330d46 100644
--- a/writerfilter/source/ooxml/OOXMLDocumentImpl.cxx
+++ b/writerfilter/source/ooxml/OOXMLDocumentImpl.cxx
@@ -336,13 +336,13 @@ void OOXMLDocumentImpl::resolveComment(Stream & rStream,
OOXMLPropertySet * OOXMLDocumentImpl::getPicturePropSet
(const OUString & rId)
{
- OOXMLStream::Pointer_t pStream
+ OOXMLStream::Pointer_t xStream
(OOXMLDocumentFactory::createStream(mpStream, rId));
- writerfilter::Reference<BinaryObj>::Pointer_t pPicture
- (new OOXMLBinaryObjectReference(pStream));
+ writerfilter::Reference<BinaryObj>::Pointer_t xPicture
+ (new OOXMLBinaryObjectReference(std::move(xStream)));
- OOXMLValue::Pointer_t pPayloadValue(new OOXMLBinaryValue(pPicture));
+ OOXMLValue::Pointer_t pPayloadValue(new OOXMLBinaryValue(std::move(xPicture)));
OOXMLPropertySet::Pointer_t pBlipSet(new OOXMLPropertySet);