summaryrefslogtreecommitdiff
path: root/sc/inc/userlist.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-12 15:51:36 +0200
committerNoel Grandin <noel@peralex.com>2015-11-13 10:54:18 +0200
commitab3d557b48cacb30598c6b5ebb1cadece493fde8 (patch)
tree0042859fbc4326341a29cae43e31f8b566d5282d /sc/inc/userlist.hxx
parent1740d0b2bec4c899af825739a8ca996785b5b525 (diff)
sc: boost::ptr_vector->std::vector
Change-Id: I78fb3a7c735621565ad523ec49b04b20053ae681
Diffstat (limited to 'sc/inc/userlist.hxx')
-rw-r--r--sc/inc/userlist.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/inc/userlist.hxx b/sc/inc/userlist.hxx
index 8983026283b8..72e8e206cfe6 100644
--- a/sc/inc/userlist.hxx
+++ b/sc/inc/userlist.hxx
@@ -23,6 +23,7 @@
#include "scdllapi.h"
#include <boost/ptr_container/ptr_vector.hpp>
+#include <vector>
/**
* Stores individual user-defined sort list.
@@ -37,7 +38,7 @@ public:
SubStr(const OUString& rReal, const OUString& rUpper);
};
private:
- typedef ::boost::ptr_vector<SubStr> SubStringsType;
+ typedef std::vector<SubStr> SubStringsType;
SubStringsType maSubStrings;
OUString aStr;