summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-04-04 11:05:51 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-04-04 10:08:46 +0000
commit7f4405faf74eb7294921fc20c0acd18f11d03ef3 (patch)
tree44d0619a91518aed84bb6b4824fdf256b015143d /writerfilter
parentce1365ec147a33a07df5bdc53796180d84b9d9e5 (diff)
Use std::make_shared<>
Change-Id: Ifc728dc0b42d713a5eaa2fc22d3e71c6aa4f196d Reviewed-on: https://gerrit.libreoffice.org/15146 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/rtftok/rtfvalue.cxx76
1 files changed, 38 insertions, 38 deletions
diff --git a/writerfilter/source/rtftok/rtfvalue.cxx b/writerfilter/source/rtftok/rtfvalue.cxx
index 72b120751fcf..e0bc59a210de 100644
--- a/writerfilter/source/rtftok/rtfvalue.cxx
+++ b/writerfilter/source/rtftok/rtfvalue.cxx
@@ -27,131 +27,131 @@ RTFValue::RTFValue(int nValue, const OUString& sValue,
const RTFShape& aShape)
: m_nValue(nValue),
m_sValue(sValue),
+ m_pAttributes(std::make_shared<RTFSprms>(rAttributes)),
+ m_pSprms(std::make_shared<RTFSprms>(rSprms)),
m_xShape(xShape),
m_xStream(xStream),
m_xObject(xObject),
- m_bForceString(bForceString)
+ m_bForceString(bForceString),
+ m_pShape(std::make_shared<RTFShape>(aShape))
{
- m_pAttributes.reset(new RTFSprms(rAttributes));
- m_pSprms.reset(new RTFSprms(rSprms));
- m_pShape.reset(new RTFShape(aShape));
}
RTFValue::RTFValue()
: m_nValue(0),
m_sValue(),
+ m_pAttributes(std::make_shared<RTFSprms>()),
+ m_pSprms(std::make_shared<RTFSprms>()),
m_xShape(),
m_xStream(),
m_xObject(),
- m_bForceString(false)
+ m_bForceString(false),
+ m_pShape(std::make_shared<RTFShape>())
{
- m_pAttributes.reset(new RTFSprms());
- m_pSprms.reset(new RTFSprms());
- m_pShape.reset(new RTFShape());
}
RTFValue::RTFValue(int nValue)
: m_nValue(nValue),
m_sValue(),
+ m_pAttributes(std::make_shared<RTFSprms>()),
+ m_pSprms(std::make_shared<RTFSprms>()),
m_xShape(),
m_xStream(),
m_xObject(),
m_bForceString(false)
{
- m_pAttributes.reset(new RTFSprms());
- m_pSprms.reset(new RTFSprms());
m_pShape.reset(new RTFShape());
}
RTFValue::RTFValue(const OUString& sValue, bool bForce)
: m_nValue(),
m_sValue(sValue),
+ m_pAttributes(std::make_shared<RTFSprms>()),
+ m_pSprms(std::make_shared<RTFSprms>()),
m_xShape(),
m_xStream(),
m_xObject(),
- m_bForceString(bForce)
+ m_bForceString(bForce),
+ m_pShape(std::make_shared<RTFShape>())
{
- m_pAttributes.reset(new RTFSprms());
- m_pSprms.reset(new RTFSprms());
- m_pShape.reset(new RTFShape());
}
RTFValue::RTFValue(RTFSprms rAttributes)
: m_nValue(),
m_sValue(),
+ m_pAttributes(std::make_shared<RTFSprms>(rAttributes)),
+ m_pSprms(std::make_shared<RTFSprms>()),
m_xShape(),
m_xStream(),
m_xObject(),
- m_bForceString(false)
+ m_bForceString(false),
+ m_pShape(std::make_shared<RTFShape>())
{
- m_pAttributes.reset(new RTFSprms(rAttributes));
- m_pSprms.reset(new RTFSprms());
- m_pShape.reset(new RTFShape());
}
RTFValue::RTFValue(RTFSprms rAttributes, RTFSprms rSprms)
: m_nValue(),
m_sValue(),
+ m_pAttributes(std::make_shared<RTFSprms>(rAttributes)),
+ m_pSprms(std::make_shared<RTFSprms>(rSprms)),
m_xShape(),
m_xStream(),
m_xObject(),
- m_bForceString(false)
+ m_bForceString(false),
+ m_pShape(std::make_shared<RTFShape>())
{
- m_pAttributes.reset(new RTFSprms(rAttributes));
- m_pSprms.reset(new RTFSprms(rSprms));
- m_pShape.reset(new RTFShape());
}
RTFValue::RTFValue(uno::Reference<drawing::XShape> const& xShape)
: m_nValue(),
m_sValue(),
+ m_pAttributes(std::make_shared<RTFSprms>()),
+ m_pSprms(std::make_shared<RTFSprms>()),
m_xShape(xShape),
m_xStream(),
m_xObject(),
- m_bForceString(false)
+ m_bForceString(false),
+ m_pShape(std::make_shared<RTFShape>())
{
- m_pAttributes.reset(new RTFSprms());
- m_pSprms.reset(new RTFSprms());
- m_pShape.reset(new RTFShape());
}
RTFValue::RTFValue(uno::Reference<io::XInputStream> const& xStream)
: m_nValue(),
m_sValue(),
+ m_pAttributes(std::make_shared<RTFSprms>()),
+ m_pSprms(std::make_shared<RTFSprms>()),
m_xShape(),
m_xStream(xStream),
m_xObject(),
- m_bForceString(false)
+ m_bForceString(false),
+ m_pShape(std::make_shared<RTFShape>())
{
- m_pAttributes.reset(new RTFSprms());
- m_pSprms.reset(new RTFSprms());
- m_pShape.reset(new RTFShape());
}
RTFValue::RTFValue(uno::Reference<embed::XEmbeddedObject> const& xObject)
: m_nValue(),
m_sValue(),
+ m_pAttributes(std::make_shared<RTFSprms>()),
+ m_pSprms(std::make_shared<RTFSprms>()),
m_xShape(),
m_xStream(),
m_xObject(xObject),
- m_bForceString(false)
+ m_bForceString(false),
+ m_pShape(std::make_shared<RTFShape>())
{
- m_pAttributes.reset(new RTFSprms());
- m_pSprms.reset(new RTFSprms());
- m_pShape.reset(new RTFShape());
}
RTFValue::RTFValue(const RTFShape& aShape)
: m_nValue(),
m_sValue(),
+ m_pAttributes(std::make_shared<RTFSprms>()),
+ m_pSprms(std::make_shared<RTFSprms>()),
m_xShape(),
m_xStream(),
m_xObject(),
- m_bForceString(false)
+ m_bForceString(false),
+ m_pShape(std::make_shared<RTFShape>(aShape))
{
- m_pAttributes.reset(new RTFSprms());
- m_pSprms.reset(new RTFSprms());
- m_pShape.reset(new RTFShape(aShape));
}
RTFValue::~RTFValue()