summaryrefslogtreecommitdiff
path: root/sc/inc/orcusxml.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-13 10:14:35 +0200
committerNoel Grandin <noel@peralex.com>2015-11-13 10:54:19 +0200
commit280553e30f4ddc932838f98a9efaac03a988a0df (patch)
treeca69442f319a8056adb152dba1d93cd409dd3efe /sc/inc/orcusxml.hxx
parent601fd58cc3a4ce3a13bc0dad1cc16f0a841aa765 (diff)
sc: boost::ptr_vector->std::vector
Change-Id: Ia78f3596888df89b13578bd383df2615bcb854a7
Diffstat (limited to 'sc/inc/orcusxml.hxx')
-rw-r--r--sc/inc/orcusxml.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/sc/inc/orcusxml.hxx b/sc/inc/orcusxml.hxx
index cc41f3b6c3e0..e16029cf815c 100644
--- a/sc/inc/orcusxml.hxx
+++ b/sc/inc/orcusxml.hxx
@@ -15,7 +15,6 @@
#include <vcl/image.hxx>
#include <vector>
-#include <boost/ptr_container/ptr_vector.hpp>
class SvTreeListEntry;
@@ -38,7 +37,7 @@ struct ScOrcusXMLTreeParam
SC_DLLPUBLIC EntryData(EntryType eType);
};
- typedef boost::ptr_vector<EntryData> UserDataStoreType;
+ typedef std::vector<EntryData> EntryDataVec;
Image maImgElementDefault;
Image maImgElementRepeat;
@@ -48,7 +47,7 @@ struct ScOrcusXMLTreeParam
* Store all custom data instances since the tree control doesn't manage
* the life cycle of user datas.
*/
- UserDataStoreType maUserDataStore;
+ EntryDataVec maUserDataStore;
static SC_DLLPUBLIC EntryData* getUserData(SvTreeListEntry& rEntry);
static SC_DLLPUBLIC const EntryData* getUserData(const SvTreeListEntry& rEntry);