diff options
Diffstat (limited to 'sc/inc/dptabsrc.hxx')
-rw-r--r-- | sc/inc/dptabsrc.hxx | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/sc/inc/dptabsrc.hxx b/sc/inc/dptabsrc.hxx index d0f23365fdc6..8125d0640ab5 100644 --- a/sc/inc/dptabsrc.hxx +++ b/sc/inc/dptabsrc.hxx @@ -264,7 +264,7 @@ class ScDPDimension : public cppu::WeakImplHelper< css::lang::XServiceInfo > { ScDPSource* pSource; - long const nDim; // dimension index (== column ID) + long nDim; // dimension index (== column ID) rtl::Reference<ScDPHierarchies> mxHierarchies; ScGeneralFunction nFunction; OUString aName; // if empty, take from source @@ -345,8 +345,8 @@ class ScDPHierarchies : public cppu::WeakImplHelper< css::lang::XServiceInfo > { private: - ScDPSource* const pSource; - long const nDim; + ScDPSource* pSource; + long nDim; // date columns have 3 hierarchies (flat/quarter/week), other columns only one // #i52547# don't offer the incomplete date hierarchy implementation static const long nHierCount = 1; @@ -381,9 +381,9 @@ class ScDPHierarchy : public cppu::WeakImplHelper< css::lang::XServiceInfo > { private: - ScDPSource* const pSource; - long const nDim; - long const nHier; + ScDPSource* pSource; + long nDim; + long nHier; rtl::Reference<ScDPLevels> mxLevels; public: @@ -412,8 +412,8 @@ class ScDPLevels : public cppu::WeakImplHelper< { private: ScDPSource* pSource; - long const nDim; - long const nHier; + long nDim; + long nHier; long nLevCount; std::unique_ptr<rtl::Reference<ScDPLevel>[]> ppLevs; @@ -449,9 +449,9 @@ class ScDPLevel : public cppu::WeakImplHelper< { private: ScDPSource* pSource; - long const nDim; - long const nHier; - long const nLev; + long nDim; + long nHier; + long nLev; rtl::Reference<ScDPMembers> mxMembers; css::uno::Sequence<sal_Int16> aSubTotals; css::sheet::DataPilotFieldSortInfo aSortInfo; // stored user settings @@ -553,7 +553,7 @@ private: ScDPSource* pSource; long nDim; long nHier; - long const nLev; + long nLev; long nMbrCount; mutable MembersType maMembers; mutable ScDPMembersHashMap aHashMap; @@ -600,10 +600,10 @@ class ScDPMember : public cppu::WeakImplHelper< private: ScDPSource* pSource; long nDim; - long const nHier; - long const nLev; + long nHier; + long nLev; - SCROW const mnDataId; + SCROW mnDataId; std::optional<OUString> mpLayoutName; sal_Int32 nPosition; // manual sorting |