diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2011-02-28 21:49:38 -0500 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2011-02-28 21:49:38 -0500 |
commit | ed110de945e73c86ecd6a510ebf1a4209b603e83 (patch) | |
tree | 5194216d440858d2ec68bcf4c9e113f62fcfd7a8 /sc/inc/dpobject.hxx | |
parent | a259eba2f737c5ba12c880ecd1ed959ac3a116ed (diff) |
Remove old container that stored data caches.
We may revive this later when we decide to pool the data cache
once again.
Diffstat (limited to 'sc/inc/dpobject.hxx')
-rw-r--r-- | sc/inc/dpobject.hxx | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/sc/inc/dpobject.hxx b/sc/inc/dpobject.hxx index 8cf4661e4f2b..b252e014f315 100644 --- a/sc/inc/dpobject.hxx +++ b/sc/inc/dpobject.hxx @@ -263,13 +263,10 @@ public: class ScDPCollection { private: - ScDocument* pDoc; - - typedef ::boost::ptr_list<ScDPTableDataCache> DataCachesType; - typedef ::boost::ptr_vector<ScDPObject> TablesType; + typedef ::boost::ptr_vector<ScDPObject> TablesType; - TablesType maTables; - DataCachesType maDPDataCaches; + ScDocument* pDoc; + TablesType maTables; public: ScDPCollection(ScDocument* pDocument); |