From 75aaa65a8f0f145657098278c3a7a3973b2c29df Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 13 Nov 2015 08:57:47 +0200 Subject: sc: rename ObjectSetType to ScDPObject Change-Id: I64720c2678f702e895c9b91571d98c0059e02a27 --- sc/inc/dpcache.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sc/inc') diff --git a/sc/inc/dpcache.hxx b/sc/inc/dpcache.hxx index bbaa220bdbf5..e48fe4e08c89 100644 --- a/sc/inc/dpcache.hxx +++ b/sc/inc/dpcache.hxx @@ -48,7 +48,7 @@ class SC_DLLPUBLIC ScDPCache : boost::noncopyable public: typedef std::vector ScDPItemDataVec; - typedef std::set ObjectSetType; + typedef std::set ScDPObjectSet; typedef std::vector LabelsType; typedef std::vector IndexArrayType; @@ -109,7 +109,7 @@ private: /** * All pivot table objects that references this cache. */ - mutable ObjectSetType maRefObjects; + mutable ScDPObjectSet maRefObjects; typedef boost::ptr_vector FieldsType; typedef boost::ptr_vector GroupFieldsType; @@ -129,7 +129,7 @@ public: const OUString* InternString(const OUString& rStr) const; void AddReference(ScDPObject* pObj) const; void RemoveReference(ScDPObject* pObj) const; - const ObjectSetType& GetAllReferences() const; + const ScDPObjectSet& GetAllReferences() const; SCROW GetIdByItemData(long nDim, const ScDPItemData& rItem) const; OUString GetFormattedString(long nDim, const ScDPItemData& rItem) const; -- cgit