diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-07-22 16:20:16 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-07-22 23:00:53 +0200 |
commit | 2006d7455f529d3d6f44d09a83be9a80e73b1d34 (patch) | |
tree | 936875a4ac98b3d3fdca4d2c34ce1c2ecaf399db /drawinglayer | |
parent | f8a312617838e8626e6e406791ad8d0aac368f23 (diff) |
no need to create OString temporaries when calling XmlWriter methods
Change-Id: Ief1101c55a0635dac43a7c4d66dd4ed0d5be70bd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154764
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'drawinglayer')
-rw-r--r-- | drawinglayer/source/tools/primitive2dxmldump.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drawinglayer/source/tools/primitive2dxmldump.cxx b/drawinglayer/source/tools/primitive2dxmldump.cxx index a68692649f46..38e6a3ea9773 100644 --- a/drawinglayer/source/tools/primitive2dxmldump.cxx +++ b/drawinglayer/source/tools/primitive2dxmldump.cxx @@ -925,7 +925,7 @@ void Primitive2dXmlDump::decomposeAndWrite( for (size_t iDx = 0; iDx < aDx.size(); ++iDx) { OString sName = "dx" + OString::number(iDx); - rWriter.attribute(sName, OUString::number(aDx[iDx])); + rWriter.attribute(sName, OString::number(aDx[iDx])); } } rWriter.endElement(); @@ -1207,7 +1207,7 @@ void Primitive2dXmlDump::decomposeAndWrite( default: { - OString aName("unhandled"); + const char* aName = "unhandled"; switch (nId) { case PRIMITIVE2D_ID_RANGE_SVX | 14: // PRIMITIVE2D_ID_SDRCELLPRIMITIVE2D |