vcl/source/window/window.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 89549af5fc4c3517c03140d073ef86e1ae7b5744 Author: Ashod Nakashian <[email protected]> AuthorDate: Sun Mar 1 15:14:13 2020 -0500 Commit: Ashod Nakashian <[email protected]> CommitDate: Sun Mar 15 18:52:35 2020 +0100 vcl: prefer emplace to insert on std::map Change-Id: I513c1bdb63a8a57a40b36c908dfb4387322f2cc3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90300 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Ashod Nakashian <[email protected]> diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx index a0e49fbfcfa0..0a4a79a16d15 100644 --- a/vcl/source/window/window.cxx +++ b/vcl/source/window/window.cxx @@ -3202,7 +3202,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 [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
