summaryrefslogtreecommitdiff
path: root/sc/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-13 10:06:28 +0200
committerNoel Grandin <noel@peralex.com>2015-11-13 10:54:19 +0200
commit601fd58cc3a4ce3a13bc0dad1cc16f0a841aa765 (patch)
treec78cda85fc2be3bf1e28bbdc450dbffc2f3c7ad6 /sc/inc
parente5e2f119eff6f57ad7abc70efd4986f8f8b3fc00 (diff)
sc: boost::ptr_vector->std::vector<std::unique_ptr>
Change-Id: Ie152e03e6219495683ebc50d916406fff0e54b6d
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/dpobject.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/sc/inc/dpobject.hxx b/sc/inc/dpobject.hxx
index 9cb613574b07..c31031bad4fb 100644
--- a/sc/inc/dpobject.hxx
+++ b/sc/inc/dpobject.hxx
@@ -34,7 +34,6 @@
#include <set>
#include <vector>
-#include <boost/ptr_container/ptr_vector.hpp>
#include <boost/ptr_container/ptr_map.hpp>
namespace com { namespace sun { namespace star {
@@ -421,7 +420,7 @@ private:
std::set<ScDPObject*>& rRefs) const;
private:
- typedef ::boost::ptr_vector<ScDPObject> TablesType;
+ typedef std::vector< std::unique_ptr<ScDPObject> > TablesType;
ScDocument* mpDoc;
TablesType maTables;