summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-06-11 09:44:40 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-06-11 21:47:34 +0200
commit696084d9dc0f6681a9a5e0fd1ed5143dc90fbdf1 (patch)
treeda592dc820ec92b21f4e3d27c282faf6e5117e9e /sc
parentd440db8b3abb8577d810fb1d8f6b2b71a1ab19be (diff)
Resolves: tdf#125808 empty labels in pivot table from registered data source
since... commit 238cadd315901cbacfd9304bb1205e9f53f13eae Date: Wed Apr 10 04:30:25 2019 +0530 dpcache : use case-insensitive normalization of... Change-Id: I19057bde268ec07561da323bc694536dcad03a95 Reviewed-on: https://gerrit.libreoffice.org/73820 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/data/dpcache.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/data/dpcache.cxx b/sc/source/core/data/dpcache.cxx
index 6222ab6ec6b4..3f096f380ad2 100644
--- a/sc/source/core/data/dpcache.cxx
+++ b/sc/source/core/data/dpcache.cxx
@@ -367,8 +367,8 @@ std::vector<OUString> normalizeLabels(const std::vector<InitColumnData>& rColDat
std::vector<OUString> normalizeLabels(const ScDPCache::DBConnector& rDB, const sal_Int32 nLabelCount)
{
- std::vector<OUString> aLabels(nLabelCount+1);
- aLabels.push_back(ScResId(STR_PIVOT_DATA));
+ std::vector<OUString> aLabels(1u, ScResId(STR_PIVOT_DATA));
+ aLabels.reserve(nLabelCount + 1);
LabelSet aExistingNames;