diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2011-02-28 21:36:18 -0500 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2011-02-28 21:36:18 -0500 |
commit | a259eba2f737c5ba12c880ecd1ed959ac3a116ed (patch) | |
tree | 12f8905aedbadad9c22de53e0414f2b8506372f0 /sc/inc/dptabdat.hxx | |
parent | e7db4c4fdc5d969f59ebee8a6b7848a9dc733c71 (diff) |
More removal of cache ID related stuff.
Diffstat (limited to 'sc/inc/dptabdat.hxx')
-rw-r--r-- | sc/inc/dptabdat.hxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sc/inc/dptabdat.hxx b/sc/inc/dptabdat.hxx index 82672202a91b..5ab7768563bb 100644 --- a/sc/inc/dptabdat.hxx +++ b/sc/inc/dptabdat.hxx @@ -97,8 +97,7 @@ class SC_DLLPUBLIC ScDPTableData long nLastHier; long nLastLevel; long nLastRet; - long mnCacheId; - const ScDocument* mpDoc; + const ScDocument* mpDoc; public: /** This structure stores dimension information used when calculating @@ -124,7 +123,7 @@ public: CalcInfo(); }; - ScDPTableData(ScDocument* pDoc, long nCacheId ); + ScDPTableData(ScDocument* pDoc); virtual ~ScDPTableData(); long GetDatePart( long nDateVal, long nHierarchy, long nLevel ); @@ -134,7 +133,6 @@ public: virtual long GetColumnCount() = 0; virtual const std::vector< SCROW >& GetColumnEntries( long nColumn ) ; - long GetCacheId() const; virtual String getDimensionName(long nColumn) = 0; virtual BOOL getIsDataLayoutDimension(long nColumn) = 0; virtual BOOL IsDateDimension(long nDim) = 0; |