summaryrefslogtreecommitdiff
path: root/sc/inc/dptabres.hxx
diff options
context:
space:
mode:
authorTamás Zolnai <zolnaitamas2000@gmail.com>2016-11-19 23:59:49 +0100
committerTamás Zolnai <tamas.zolnai@collabora.com>2016-11-20 00:14:28 +0100
commit298ee50676b849020a8a5042e8612f71379ecf3b (patch)
treea44a07ee98676148fabb7838e80a391db1019e69 /sc/inc/dptabres.hxx
parenteb27a63a38ee7d15292dc40520b0605e4c2228e2 (diff)
PivotMedian: Implement median as a new pivot table function
Change-Id: Ife90c8f1c36980254de3cec6e395a6ba94d99fea
Diffstat (limited to 'sc/inc/dptabres.hxx')
-rw-r--r--sc/inc/dptabres.hxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/sc/inc/dptabres.hxx b/sc/inc/dptabres.hxx
index 05efe99b9c64..65dbf5dbb4d1 100644
--- a/sc/inc/dptabres.hxx
+++ b/sc/inc/dptabres.hxx
@@ -160,6 +160,7 @@ private:
double fAux;
long nCount;
ScDPAggData* pChild;
+ std::vector<double> mSortedValues;
public:
ScDPAggData() : fVal(0.0), fAux(0.0), nCount(SC_DPAGG_EMPTY), pChild(nullptr) {}