summaryrefslogtreecommitdiff
path: root/sc/source/core/data/document.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-09-12 08:14:36 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-09-12 09:42:55 +0200
commitb6819a53c0b56a47d6ac7c6eb5aa7d82ca49136c (patch)
tree393e90116f9b141c5f1e189dbc48ca774f171967 /sc/source/core/data/document.cxx
parentda705eff910f512623a689aaf28604270fb8f1c4 (diff)
clang-tidy modernize-use-emplace in sc
Change-Id: Ifc38e1fc188fe957a0c717aec19cdd6637e4c658 Reviewed-on: https://gerrit.libreoffice.org/42183 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/core/data/document.cxx')
-rw-r--r--sc/source/core/data/document.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/data/document.cxx b/sc/source/core/data/document.cxx
index 019ee463bacd..46a01927eafb 100644
--- a/sc/source/core/data/document.cxx
+++ b/sc/source/core/data/document.cxx
@@ -2204,7 +2204,7 @@ void ScDocument::CopyToClip(const ScClipParam& rClipParam,
pClipDoc->maTabNames.push_back(aTabName);
}
else
- pClipDoc->maTabNames.push_back(OUString());
+ pClipDoc->maTabNames.emplace_back();
}
pClipDoc->aDocName = aDocName;
@@ -2304,7 +2304,7 @@ void ScDocument::CopyTabToClip(SCCOL nCol1, SCROW nRow1,
pClipDoc->maTabNames.push_back(aTabName);
}
else
- pClipDoc->maTabNames.push_back(OUString());
+ pClipDoc->maTabNames.emplace_back();
}
PutInOrder( nCol1, nCol2 );