diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-10-31 21:56:19 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-10-31 22:12:46 -0400 |
commit | 2a2a2c42814a2b3d00c85f7ba48fcc0f9f04a111 (patch) | |
tree | 4662a2554ea12ea3df88dbd32cfb586a3c8184fe /sc/inc/dpshttab.hxx | |
parent | 6a06befd20b01290a61e8157bd72c20eddcd15a0 (diff) |
Rename ScDPCacheTable to ScDPFilteredCache.
I always wanted to do this. The new name reflects what it really does
better than the old one.
Change-Id: I3c90cce06d482f1453936ff3916eef9663bb417b
Diffstat (limited to 'sc/inc/dpshttab.hxx')
-rw-r--r-- | sc/inc/dpshttab.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/inc/dpshttab.hxx b/sc/inc/dpshttab.hxx index 633207ab5e97..9e1e0d49b8ec 100644 --- a/sc/inc/dpshttab.hxx +++ b/sc/inc/dpshttab.hxx @@ -104,7 +104,7 @@ private: bool bIgnoreEmptyRows; bool bRepeatIfEmpty; - ScDPCacheTable aCacheTable; + ScDPFilteredCache aCacheTable; public: ScSheetDPData(ScDocument* pD, const ScSheetSourceDesc& rDesc, const ScDPCache& rCache); @@ -121,12 +121,12 @@ public: virtual bool IsRepeatIfEmpty(); virtual void CreateCacheTable(); - virtual void FilterCacheTable(const ::std::vector<ScDPCacheTable::Criterion>& rCriteria, const ::boost::unordered_set<sal_Int32>& rCatDims); - virtual void GetDrillDownData(const ::std::vector<ScDPCacheTable::Criterion>& rCriteria, + virtual void FilterCacheTable(const ::std::vector<ScDPFilteredCache::Criterion>& rCriteria, const ::boost::unordered_set<sal_Int32>& rCatDims); + virtual void GetDrillDownData(const ::std::vector<ScDPFilteredCache::Criterion>& rCriteria, const ::boost::unordered_set<sal_Int32>& rCatDims, ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > >& rData); virtual void CalcResults(CalcInfo& rInfo, bool bAutoShow); - virtual const ScDPCacheTable& GetCacheTable() const; + virtual const ScDPFilteredCache& GetCacheTable() const; virtual void ReloadCacheTable(); }; |