summaryrefslogtreecommitdiffstats
path: root/sc/inc/dpobject.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kyoshida@novell.com>2011-02-28 21:49:38 -0500
committerKohei Yoshida <kyoshida@novell.com>2011-02-28 21:49:38 -0500
commited110de945e73c86ecd6a510ebf1a4209b603e83 (patch)
tree5194216d440858d2ec68bcf4c9e113f62fcfd7a8 /sc/inc/dpobject.hxx
parentMore removal of cache ID related stuff. (diff)
downloadcore-ed110de945e73c86ecd6a510ebf1a4209b603e83.tar.gz
core-ed110de945e73c86ecd6a510ebf1a4209b603e83.zip
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.hxx9
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);