summaryrefslogtreecommitdiff
path: root/sw/source/uibase/inc/regionsw.hxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-07-27 15:14:49 +0200
committerMichael Stahl <mstahl@redhat.com>2015-07-27 17:05:33 +0200
commitabf56d46be1b11973fce1fa48e40b82820d66e58 (patch)
tree862ca250c0b2d26f93cad15b37b55eb86f19c961 /sw/source/uibase/inc/regionsw.hxx
parent27825a355edc79ac62f16b3ea8554ea834bed514 (diff)
sw: replace boost::ptr_set with std::map<std::unique_ptr>
Change-Id: I2af80c8223ec3074058c013be7302ebf8edad95c
Diffstat (limited to 'sw/source/uibase/inc/regionsw.hxx')
-rw-r--r--sw/source/uibase/inc/regionsw.hxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/sw/source/uibase/inc/regionsw.hxx b/sw/source/uibase/inc/regionsw.hxx
index d74e06af479a..7b4d1dec3c61 100644
--- a/sw/source/uibase/inc/regionsw.hxx
+++ b/sw/source/uibase/inc/regionsw.hxx
@@ -44,7 +44,8 @@
#include <svx/paraprev.hxx>
#include <editeng/lrspitem.hxx>
-#include <boost/ptr_container/ptr_set.hpp>
+#include <memory>
+#include <map>
class SwWrtShell;
@@ -56,7 +57,7 @@ namespace sfx2
// dialog "edit regions"
class SectRepr;
-typedef boost::ptr_set<SectRepr> SectReprArr;
+typedef std::map<size_t, std::unique_ptr<SectRepr>> SectReprs_t;
class SwEditRegionDlg : public SfxModalDialog
{
@@ -91,7 +92,7 @@ class SwEditRegionDlg : public SfxModalDialog
ImageList aImageIL;
SwWrtShell& rSh;
- SectReprArr aSectReprArr;
+ SectReprs_t m_SectReprs;
const SwSection* pCurrSect;
sfx2::DocumentInserter* m_pDocInserter;
VclPtr<vcl::Window> m_pOldDefDlgParent;