diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-01-07 13:52:59 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-01-08 10:38:35 +0100 |
commit | 17dd2662ccfa9d04efbea74e5d7548db5b2126d4 (patch) | |
tree | 37c0de883c43a57f54b0a483437da9de3bf4c941 /xmloff | |
parent | 638be04c8334e5e29f9258ff870fbe63603ce7e0 (diff) |
convert "*xxx.get()" to "*xxx"
Change-Id: Ic307226591ff9702957ccdec486ccf70357eb6d9
Reviewed-on: https://gerrit.libreoffice.org/65951
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/draw/ximpshap.cxx | 4 | ||||
-rw-r--r-- | xmloff/source/style/impastpl.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/draw/ximpshap.cxx b/xmloff/source/draw/ximpshap.cxx index 8988e52dd9f1..656e4c8a495e 100644 --- a/xmloff/source/draw/ximpshap.cxx +++ b/xmloff/source/draw/ximpshap.cxx @@ -3448,7 +3448,7 @@ SvXMLImportContextRef SdXMLFrameShapeContext::CreateChildContext( sal_uInt16 nPr if(getSupportsMultipleContents() && dynamic_cast< SdXMLGraphicObjectShapeContext* >(xContext.get())) { - addContent(*mxImplContext.get()); + addContent(*mxImplContext); } } else if(getSupportsMultipleContents() && XML_NAMESPACE_DRAW == nPrefix && IsXMLToken(rLocalName, XML_IMAGE)) @@ -3460,7 +3460,7 @@ SvXMLImportContextRef SdXMLFrameShapeContext::CreateChildContext( sal_uInt16 nPr if(dynamic_cast< SdXMLGraphicObjectShapeContext* >(xContext.get())) { - addContent(*mxImplContext.get()); + addContent(*mxImplContext); } } else if( mbSupportsReplacement && !mxReplImplContext.is() && diff --git a/xmloff/source/style/impastpl.cxx b/xmloff/source/style/impastpl.cxx index 177fadee8de8..7a5d0cba4292 100644 --- a/xmloff/source/style/impastpl.cxx +++ b/xmloff/source/style/impastpl.cxx @@ -426,7 +426,7 @@ void SvXMLAutoStylePoolP_Impl::AddFamily( "Adding duplicate family " << rStrName << " with mismatching mapper ! " << typeid((*iter)->mxMapper.get()).name() << " " << - typeid(*rMapper.get()).name() ); + typeid(*rMapper).name() ); } #endif |