diff options
author | Tamás Zolnai <tamas.zolnai@collabora.com> | 2017-10-07 17:50:53 +0200 |
---|---|---|
committer | Tamás Zolnai <tamas.zolnai@collabora.com> | 2017-10-07 18:38:01 +0200 |
commit | 74b47af9885ba4c59195fedc1e0510b8b056a025 (patch) | |
tree | fc0646db8b276ee00ef80ebe8466d915784aaf54 /sc | |
parent | fe6ea004872c86c4a2e5849c7c9e75905711d6f3 (diff) |
This method was replaced accidentally
Change-Id: I37d6d0fc36420de6dbdd69f264b85f3ba591e312
Reviewed-on: https://gerrit.libreoffice.org/43232
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/excel/xepivotxml.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/excel/xepivotxml.cxx b/sc/source/filter/excel/xepivotxml.cxx index b89ea058c2e4..99510d85835a 100644 --- a/sc/source/filter/excel/xepivotxml.cxx +++ b/sc/source/filter/excel/xepivotxml.cxx @@ -783,7 +783,7 @@ void XclExpXmlPivotTables::SavePivotTableXml( XclExpXmlStream& rStrm, const ScDP size_t nCachePos = it - iCacheFieldItems_begin; auto aInserted = aUsedCachePositions.insert(nCachePos); if (aInserted.second) - aMemberSequence.push_back(std::make_pair(nCachePos, !rMember.mbVisible)); + aMemberSequence.emplace_back(std::make_pair(nCachePos, !rMember.mbVisible)); break; } } |