summaryrefslogtreecommitdiff
path: root/sc/inc
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-04-19 23:19:42 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-04-19 23:21:08 -0400
commit75c87c417b6fbb82d956a803f065c9c49d0d62f4 (patch)
tree9fb11583976eef94aa046c399a01045e20187553 /sc/inc
parentcf3e8cf92190baddf601283855070a36fc89125c (diff)
Rename to ScDPResultTree.
It *is* a result tree. Let's call it that. Change-Id: Ie8f3e4c4f6e54fd84d79b80ac98c0be0b0cc42d4
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/dpresfilter.hxx10
-rw-r--r--sc/inc/dptabsrc.hxx2
2 files changed, 6 insertions, 6 deletions
diff --git a/sc/inc/dpresfilter.hxx b/sc/inc/dpresfilter.hxx
index a151bd3da4bd..bde3c02cb55e 100644
--- a/sc/inc/dpresfilter.hxx
+++ b/sc/inc/dpresfilter.hxx
@@ -46,7 +46,7 @@ struct ScDPResultFilter
* <p>If the pivot table layout only consists of either column or row
* dimensions, the root node only has one child node.</p>
*/
-class ScDPResultFilterSet : boost::noncopyable
+class ScDPResultTree : boost::noncopyable
{
public:
typedef std::vector<double> ValuesType;
@@ -90,8 +90,8 @@ private:
public:
- ScDPResultFilterSet();
- ~ScDPResultFilterSet();
+ ScDPResultTree();
+ ~ScDPResultTree();
/**
* Add a single value filter path. The filters are expected to be sorted
@@ -106,7 +106,7 @@ public:
*/
void add(const std::vector<ScDPResultFilter>& rFilter, long nCol, long nRow, double fVal);
- void swap(ScDPResultFilterSet& rOther);
+ void swap(ScDPResultTree& rOther);
bool empty() const;
void clear();
@@ -122,7 +122,7 @@ public:
struct ScDPResultFilterContext
{
- ScDPResultFilterSet maFilterSet;
+ ScDPResultTree maFilterSet;
std::vector<ScDPResultFilter> maFilters;
long mnCol;
long mnRow;
diff --git a/sc/inc/dptabsrc.hxx b/sc/inc/dptabsrc.hxx
index 51b6759c8c1c..60f92121f930 100644
--- a/sc/inc/dptabsrc.hxx
+++ b/sc/inc/dptabsrc.hxx
@@ -104,7 +104,7 @@ private:
std::vector<long> maRowDims;
std::vector<long> maDataDims;
std::vector<long> maPageDims;
- ScDPResultFilterSet maResFilterSet;
+ ScDPResultTree maResFilterSet;
bool bColumnGrand;
bool bRowGrand;