summaryrefslogtreecommitdiff
path: root/vcl/source/fontsubset
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-09-13 16:44:19 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-09-14 08:29:45 +0200
commitc856ae17aff5db258eb16713f56fce9f28400d47 (patch)
tree5a02c77626257837c465212e1345c65334c72e37 /vcl/source/fontsubset
parent2d2259c848b43f9f04d5bb6073c00b8ae124534a (diff)
clang-tidy modernize-use-emplace in vcl
Change-Id: Ie0a6d105b0167431275e628935df4f4c1a36d070 Reviewed-on: https://gerrit.libreoffice.org/42259 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/source/fontsubset')
-rw-r--r--vcl/source/fontsubset/sft.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/fontsubset/sft.cxx b/vcl/source/fontsubset/sft.cxx
index 864158aba8ec..a322848056ee 100644
--- a/vcl/source/fontsubset/sft.cxx
+++ b/vcl/source/fontsubset/sft.cxx
@@ -793,7 +793,7 @@ static int BSplineToPSPath(ControlPoint *srcA, int srcCount, PSPathElement **pat
}
if (ecflag) {
- aPathList.push_back( PSPathElement(PS_CLOSEPATH) );
+ aPathList.emplace_back(PS_CLOSEPATH );
scflag = 1;
ecflag = false;
cp = EndContour + 1;