summaryrefslogtreecommitdiff
path: root/vcl/source/gdi/pdfwriter_impl.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2020-10-27 21:17:29 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-10-28 07:21:42 +0100
commit35f16614ee7ddf518d4c01de6b1d800f5ff1ba7e (patch)
treee888a2b191379d90d460fc4a4aa82959c5441da2 /vcl/source/gdi/pdfwriter_impl.cxx
parenta4d4ed86991e2901ac86189e95966d4e99be4944 (diff)
std::set->o3tl::sorted_vector in vcl
Change-Id: Ie486b629b4074da5121b55c76965aeb8ea057f31 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104904 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/source/gdi/pdfwriter_impl.cxx')
-rw-r--r--vcl/source/gdi/pdfwriter_impl.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/vcl/source/gdi/pdfwriter_impl.cxx b/vcl/source/gdi/pdfwriter_impl.cxx
index 592638222b2c..1e7d8db238e1 100644
--- a/vcl/source/gdi/pdfwriter_impl.cxx
+++ b/vcl/source/gdi/pdfwriter_impl.cxx
@@ -78,6 +78,7 @@
#include <impglyphitem.hxx>
#include <pdf/XmpMetadata.hxx>
#include <pdf/objectcopier.hxx>
+#include <o3tl/sorted_vector.hxx>
#include "pdfwriter_impl.hxx"
@@ -5437,7 +5438,7 @@ struct AnnotationSortEntry
struct AnnotSortContainer
{
- std::set< sal_Int32 > aObjects;
+ o3tl::sorted_vector< sal_Int32 > aObjects;
std::vector< AnnotationSortEntry > aSortedAnnots;
};