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/dptabdat.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/dptabdat.hxx')
-rw-r--r-- | sc/inc/dptabdat.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/inc/dptabdat.hxx b/sc/inc/dptabdat.hxx index 16b8ef323dbf..26ada0e84ef0 100644 --- a/sc/inc/dptabdat.hxx +++ b/sc/inc/dptabdat.hxx @@ -148,12 +148,12 @@ public: virtual bool IsRepeatIfEmpty(); virtual void CreateCacheTable() = 0; - virtual void FilterCacheTable(const ::std::vector<ScDPCacheTable::Criterion>& rCriteria, const ::boost::unordered_set<sal_Int32>& rDataDims) = 0; - virtual void GetDrillDownData(const ::std::vector<ScDPCacheTable::Criterion>& rCriteria, + virtual void FilterCacheTable(const ::std::vector<ScDPFilteredCache::Criterion>& rCriteria, const ::boost::unordered_set<sal_Int32>& rDataDims) = 0; + 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) = 0; virtual void CalcResults(CalcInfo& rInfo, bool bAutoShow) = 0; - virtual const ScDPCacheTable& GetCacheTable() const = 0; + virtual const ScDPFilteredCache& GetCacheTable() const = 0; virtual void ReloadCacheTable() = 0; // overloaded in ScDPGroupTableData: @@ -187,12 +187,12 @@ protected: ::std::vector<ScDPValueData> aValues; }; - void FillRowDataFromCacheTable(sal_Int32 nRow, const ScDPCacheTable& rCacheTable, const CalcInfo& rInfo, CalcRowData& rData); + void FillRowDataFromCacheTable(sal_Int32 nRow, const ScDPFilteredCache& rCacheTable, const CalcInfo& rInfo, CalcRowData& rData); void ProcessRowData(CalcInfo& rInfo, CalcRowData& rData, bool bAutoShow); - void CalcResultsFromCacheTable(const ScDPCacheTable& rCacheTable, CalcInfo& rInfo, bool bAutoShow); + void CalcResultsFromCacheTable(const ScDPFilteredCache& rCacheTable, CalcInfo& rInfo, bool bAutoShow); private: - void GetItemData(const ScDPCacheTable& rCacheTable, sal_Int32 nRow, + void GetItemData(const ScDPFilteredCache& rCacheTable, sal_Int32 nRow, const ::std::vector<long>& rDims, ::std::vector< SCROW >& rItemData); }; #endif |