diff options
Diffstat (limited to 'sw/source/uibase/inc/redlndlg.hxx')
-rw-r--r-- | sw/source/uibase/inc/redlndlg.hxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sw/source/uibase/inc/redlndlg.hxx b/sw/source/uibase/inc/redlndlg.hxx index db8128f869ff..ea78d6426f55 100644 --- a/sw/source/uibase/inc/redlndlg.hxx +++ b/sw/source/uibase/inc/redlndlg.hxx @@ -33,6 +33,9 @@ #include <boost/ptr_container/ptr_vector.hpp> #include <o3tl/sorted_vector.hxx> +#include <memory> +#include <vector> + class SwChildWinWrapper; struct SwRedlineDataChild @@ -62,8 +65,7 @@ typedef boost::ptr_vector<SwRedlineDataChild> SwRedlineDataChildArr; class SW_DLLPUBLIC SwRedlineAcceptDlg { VclPtr<vcl::Window> pParentDlg; - boost::ptr_vector<SwRedlineDataParent> - aRedlineParents; + std::vector<std::unique_ptr<SwRedlineDataParent>> m_RedlineParents; SwRedlineDataChildArr aRedlineChildren; SwRedlineDataParentSortArr aUsedSeqNo; VclPtr<SvxAcceptChgCtr> aTabPagesCTRL; |