summaryrefslogtreecommitdiffstats
path: root/sc/inc/dpresfilter.hxx
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/dpresfilter.hxx
parentWaE: variables set but not used (diff)
downloadcore-75c87c417b6fbb82d956a803f065c9c49d0d62f4.tar.gz
core-75c87c417b6fbb82d956a803f065c9c49d0d62f4.zip
Rename to ScDPResultTree.
It *is* a result tree. Let's call it that. Change-Id: Ie8f3e4c4f6e54fd84d79b80ac98c0be0b0cc42d4
Diffstat (limited to 'sc/inc/dpresfilter.hxx')
-rw-r--r--sc/inc/dpresfilter.hxx10
1 files changed, 5 insertions, 5 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;