[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.4' - vcl/source

Ashod Nakashian (via logerrit) logerrit at kemper.freedesktop.org
Sat May 23 15:59:37 UTC 2020


 vcl/source/window/window.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b2def0d79a38b6d050ab1016e1be1b873a1a5a6e
Author:     Ashod Nakashian <ashod.nakashian at collabora.co.uk>
AuthorDate: Sun Mar 1 15:14:13 2020 -0500
Commit:     Michael Meeks <michael.meeks at collabora.com>
CommitDate: Sat May 23 16:58:25 2020 +0100

    vcl: prefer emplace to insert on std::map
    
    Change-Id: I513c1bdb63a8a57a40b36c908dfb4387322f2cc3
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90297
    Tested-by: Jenkins
    Reviewed-by: Ashod Nakashian <ashnakash at gmail.com>

diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx
index df73e936e8a8..120087f21267 100644
--- a/vcl/source/window/window.cxx
+++ b/vcl/source/window/window.cxx
@@ -3190,7 +3190,7 @@ void Window::SetLOKNotifier(const vcl::ILibreOfficeKitNotifier* pNotifier, bool
         // assign the LOK window id
         assert(mpWindowImpl->mnLOKWindowId == 0);
         mpWindowImpl->mnLOKWindowId = sLastLOKWindowId++;
-        GetLOKWindowsMap().insert(std::map<vcl::LOKWindowId, VclPtr<vcl::Window>>::value_type(mpWindowImpl->mnLOKWindowId, this));
+        GetLOKWindowsMap().emplace(mpWindowImpl->mnLOKWindowId, this);
     }
     else
         mpWindowImpl->mbLOKParentNotifier = true;


More information about the Libreoffice-commits mailing list