summaryrefslogtreecommitdiff
path: root/sw/inc/editsh.hxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-09-01 13:46:13 +0200
committerMichael Stahl <mstahl@redhat.com>2015-09-01 18:25:47 +0200
commit121e73ec461553279db12b6fcfc18f593983d1a5 (patch)
treedc4e10d3f38b20d784f40f3549f2aeaaee85fa96 /sw/inc/editsh.hxx
parent6fcaaca6cf6edce3c0af4d4b7976043f89a26ca1 (diff)
sw: replace boost::ptr_vector with std::vector
Change-Id: Iad91811a0e674b3541d51f3e94a9a5770bfda0a1
Diffstat (limited to 'sw/inc/editsh.hxx')
-rw-r--r--sw/inc/editsh.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/editsh.hxx b/sw/inc/editsh.hxx
index 98ed2dcb975a..cf9740c02a20 100644
--- a/sw/inc/editsh.hxx
+++ b/sw/inc/editsh.hxx
@@ -36,11 +36,11 @@
#include <frmfmt.hxx>
#include <charfmt.hxx>
+#include <memory>
#include <vector>
#include <set>
#include <swundo.hxx>
#include <svtools/embedhlp.hxx>
-#include <boost/ptr_container/ptr_vector.hpp>
namespace tools { class PolyPolygon; }
class SwDoc;
@@ -125,7 +125,7 @@ struct SwGetINetAttr
: sText( rText ), rINetAttr( rAttr )
{}
};
-typedef boost::ptr_vector<SwGetINetAttr> SwGetINetAttrs;
+typedef std::vector<SwGetINetAttr> SwGetINetAttrs;
// Types of forms of content.
#define CNT_TXT 0x0001