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

New commits:
commit dfeaeb202648414b87769ee671e7b271227a1eb2
Author:     Ashod Nakashian <ashod.nakash...@collabora.co.uk>
AuthorDate: Sun Mar 1 15:14:13 2020 -0500
Commit:     Ashod Nakashian <ashnak...@gmail.com>
CommitDate: Sun Mar 15 20:59: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 <ashnak...@gmail.com>

diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx
index 7afb1fb36e6d..691ed915c416 100644
--- a/vcl/source/window/window.cxx
+++ b/vcl/source/window/window.cxx
@@ -3237,7 +3237,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;
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to