summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdglev.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2020-09-12 20:10:17 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-09-13 08:13:59 +0200
commit4059583469c168c553d0529684caba6b281827d1 (patch)
treefdc1595c17d23156e97240e737f4a0e71ea56b5f /svx/source/svdraw/svdglev.cxx
parenta598c5ac64fda302d13ff7638fd743a991b2e988 (diff)
std::set->o3tl::sorted_vector in svx
Change-Id: I86154a8ddf885ea23ff29e4df1b67e7501b9165b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102536 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/svdraw/svdglev.cxx')
-rw-r--r--svx/source/svdraw/svdglev.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdglev.cxx b/svx/source/svdraw/svdglev.cxx
index 5f81d38575ab..9d1f19c558cf 100644
--- a/svx/source/svdraw/svdglev.cxx
+++ b/svx/source/svdraw/svdglev.cxx
@@ -297,7 +297,7 @@ void SdrGlueEditView::ImpCopyMarkedGluePoints()
}
for(const auto& rId : aIdsToErase)
rPts.erase(rId);
- rPts.insert(aIdsToInsert.begin(), aIdsToInsert.end());
+ rPts.insert(aIdsToInsert);
}
}
if( bUndo )