summaryrefslogtreecommitdiff
path: root/extensions/source/bibliography/bibconfig.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/bibliography/bibconfig.hxx')
-rw-r--r--extensions/source/bibliography/bibconfig.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/extensions/source/bibliography/bibconfig.hxx b/extensions/source/bibliography/bibconfig.hxx
index 4bd0d981d23e..590e90759515 100644
--- a/extensions/source/bibliography/bibconfig.hxx
+++ b/extensions/source/bibliography/bibconfig.hxx
@@ -21,10 +21,11 @@
#define INCLUDED_EXTENSIONS_SOURCE_BIBLIOGRAPHY_BIBCONFIG_HXX
#include <unotools/configitem.hxx>
-#include <boost/ptr_container/ptr_vector.hpp>
+#include <vector>
+#include <memory>
struct Mapping;
-typedef boost::ptr_vector<Mapping> MappingArray;
+typedef std::vector<std::unique_ptr<Mapping> > MappingArray;