summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sw/inc/ndtxt.hxx4
-rw-r--r--sw/source/core/unocore/unoportenum.cxx2
-rw-r--r--sw/source/filter/ww8/wrtww8.hxx3
3 files changed, 5 insertions, 4 deletions
diff --git a/sw/inc/ndtxt.hxx b/sw/inc/ndtxt.hxx
index 7786c6ee8fe4..b222b6568ed2 100644
--- a/sw/inc/ndtxt.hxx
+++ b/sw/inc/ndtxt.hxx
@@ -30,7 +30,7 @@
#include "modeltoviewhelper.hxx"
#include <sfx2/Metadatable.hxx>
-
+#include <o3tl/sorted_vector.hxx>
#include <memory>
#include <vector>
#include <set>
@@ -74,7 +74,7 @@ namespace com::sun::star {
namespace text { class XTextContent; }
}
-typedef std::set< sal_Int32 > SwSoftPageBreakList;
+typedef o3tl::sorted_vector< sal_Int32 > SwSoftPageBreakList;
/// SwTextNode is a paragraph in the document model.
class SW_DLLPUBLIC SwTextNode
diff --git a/sw/source/core/unocore/unoportenum.cxx b/sw/source/core/unocore/unoportenum.cxx
index fbb2a8744d8a..748091ff4252 100644
--- a/sw/source/core/unocore/unoportenum.cxx
+++ b/sw/source/core/unocore/unoportenum.cxx
@@ -634,7 +634,7 @@ static void lcl_ExportSoftPageBreak(
SwSoftPageBreakList& rBreakArr,
const sal_Int32 nIndex)
{
- for ( auto aIter = rBreakArr.begin(), aEnd = rBreakArr.end(); aIter != aEnd; )
+ for ( auto aIter = rBreakArr.begin(); aIter != rBreakArr.end(); )
{
if ( nIndex > *aIter )
{
diff --git a/sw/source/filter/ww8/wrtww8.hxx b/sw/source/filter/ww8/wrtww8.hxx
index 3ad49714fac3..ae1d3dfffd25 100644
--- a/sw/source/filter/ww8/wrtww8.hxx
+++ b/sw/source/filter/ww8/wrtww8.hxx
@@ -41,6 +41,7 @@
#include <optional>
#include <o3tl/typed_flags_set.hxx>
+#include <o3tl/sorted_vector.hxx>
#include <cstddef>
#include <memory>
@@ -126,7 +127,7 @@ namespace sw::mark { class IFieldmark; }
namespace com::sun::star::embed { class XEmbeddedObject; }
typedef std::map<const css::embed::XEmbeddedObject*, sal_Int32> WW8OleMap;
-typedef std::set< sal_Int32 > SwSoftPageBreakList;
+typedef o3tl::sorted_vector< sal_Int32 > SwSoftPageBreakList;
#define GRF_MAGIC_1 0x12 // 3 magic bytes for PicLocFc attribute
#define GRF_MAGIC_2 0x34