[Libreoffice-commits] core.git: sw/source

Noel Grandin (via logerrit) logerrit at kemper.freedesktop.org
Sat Sep 12 16:29:15 UTC 2020


 sw/source/core/doc/DocumentContentOperationsManager.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8214051829468c783404faf19194b26b35833e41
Author:     Noel Grandin <noelgrandin at gmail.com>
AuthorDate: Sat Sep 12 17:16:24 2020 +0200
Commit:     Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Sat Sep 12 18:28:36 2020 +0200

    unordered_set->sorted_vector in CopyWithFlyInFly
    
    Change-Id: I9ee4ffd9a54fc62a9fa8d8f15dc90d458d87bbc1
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102520
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>

diff --git a/sw/source/core/doc/DocumentContentOperationsManager.cxx b/sw/source/core/doc/DocumentContentOperationsManager.cxx
index 06edf59efd66..d02b87ee0276 100644
--- a/sw/source/core/doc/DocumentContentOperationsManager.cxx
+++ b/sw/source/core/doc/DocumentContentOperationsManager.cxx
@@ -3489,7 +3489,7 @@ void DocumentContentOperationsManager::CopyWithFlyInFly(
         {   // recreate from previous node (could be merged now)
             if (SwTextNode *const pNode = aSavePos.GetNode().GetTextNode())
             {
-                std::unordered_set<SwTextFrame*> frames;
+                o3tl::sorted_vector<SwTextFrame*> frames;
                 SwTextNode *const pEndNode = rInsPos.GetNode().GetTextNode();
                 if (pEndNode)
                 {


More information about the Libreoffice-commits mailing list