diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-07-04 13:53:15 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-07-04 15:30:32 +0200 |
commit | f0d007b7b70e2845df082d11f023e4fca9ac947f (patch) | |
tree | 24cd5a1d5a6513e049f95786c4ffca76a8995f5e /sc/inc | |
parent | 2a269251f86b6bed3f24310bca96c796847bd42f (diff) |
loplugin:useuniqueptr in ScDPDataDimension
Change-Id: I74d6fd6a291d518c26180836706e4195f1144c8f
Reviewed-on: https://gerrit.libreoffice.org/56944
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/dptabres.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/dptabres.hxx b/sc/inc/dptabres.hxx index f57816dcb080..d4d14d735156 100644 --- a/sc/inc/dptabres.hxx +++ b/sc/inc/dptabres.hxx @@ -614,7 +614,7 @@ class ScDPDataDimension private: const ScDPResultData* pResultData; const ScDPResultDimension* pResultDimension; // column - ScDPDataMembers maMembers; + std::vector<std::unique_ptr<ScDPDataMember>> maMembers; bool bIsDataLayout; //! or ptr to IntDimension? public: |