diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-13 08:54:18 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-11-13 10:54:19 +0200 |
commit | a029ab3d480c97313dc88dc6e1fbc0f3a900fb09 (patch) | |
tree | 5f768558ef2ea780ec34086bc3e21d95c3c7ecec /sc/inc/dpcache.hxx | |
parent | 2aacf6c2cd82322b953988ff30d3bc997ae76d7b (diff) |
sc:rename ItemsType to ScDPItemDataVec
Change-Id: Ib81da8bd2e934330deea6f862c6774db4df93603
Diffstat (limited to 'sc/inc/dpcache.hxx')
-rw-r--r-- | sc/inc/dpcache.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/inc/dpcache.hxx b/sc/inc/dpcache.hxx index ebddcfe6e85f..bbaa220bdbf5 100644 --- a/sc/inc/dpcache.hxx +++ b/sc/inc/dpcache.hxx @@ -47,14 +47,14 @@ class SC_DLLPUBLIC ScDPCache : boost::noncopyable typedef std::unordered_set<OUString, OUStringHash> StringSetType; public: - typedef std::vector<ScDPItemData> ItemsType; + typedef std::vector<ScDPItemData> ScDPItemDataVec; typedef std::set<ScDPObject*> ObjectSetType; typedef std::vector<OUString> LabelsType; typedef std::vector<SCROW> IndexArrayType; struct GroupItems : boost::noncopyable { - ItemsType maItems; + ScDPItemDataVec maItems; ScDPNumGroupInfo maInfo; sal_Int32 mnGroupType; @@ -72,7 +72,7 @@ public: /** * Unique values in the field, stored in ascending order. */ - ItemsType maItems; + ScDPItemDataVec maItems; /** * Original source data represented as indices to the unique value @@ -157,7 +157,7 @@ public: static SCROW GetOrder( long nDim, SCROW nIndex ); const IndexArrayType* GetFieldIndexArray( size_t nDim ) const; - const ItemsType& GetDimMemberValues( SCCOL nDim ) const; + const ScDPItemDataVec& GetDimMemberValues( SCCOL nDim ) const; bool InitFromDoc(ScDocument* pDoc, const ScRange& rRange); bool InitFromDataBase(DBConnector& rDB); |