summaryrefslogtreecommitdiff
path: root/sc/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-13 09:06:37 +0200
committerNoel Grandin <noel@peralex.com>2015-11-13 10:54:19 +0200
commitf3ba19b37f212a5839a91223f77d501d79e2c4b5 (patch)
tree781293199c66dc10d433f1cd4ed256857c45c778 /sc/inc
parentc2defd97cb60439fc25970c903e66fbecad148e5 (diff)
sc: boost::ptr_vector->std::vector<std::unique_ptr>
Change-Id: I7bf6fad1ed2d0f8e9a42293e0ceec7fc3b59963f
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/dpcache.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/dpcache.hxx b/sc/inc/dpcache.hxx
index 155c969363b0..7226be9fd6cd 100644
--- a/sc/inc/dpcache.hxx
+++ b/sc/inc/dpcache.hxx
@@ -110,7 +110,7 @@ private:
*/
mutable ScDPObjectSet maRefObjects;
- typedef boost::ptr_vector<Field> FieldsType;
+ typedef std::vector< std::unique_ptr<Field> > FieldsType;
typedef boost::ptr_vector<GroupItems> GroupFieldsType;
FieldsType maFields;