From 8ea22121ac8fe0c0e3a073ecd607713f45b34ff3 Mon Sep 17 00:00:00 2001 From: sin-ack Date: Mon, 30 Aug 2021 18:12:48 +0000 Subject: Userland: Migrate to argument-less deferred_invoke Only one place used this argument and it was to hold on to a strong ref for the object. Since we already do that now, there's no need to keep this argument around since this can be easily captured. This commit contains no changes. --- Userland/Applications/Browser/BrowserWindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Userland/Applications/Browser') diff --git a/Userland/Applications/Browser/BrowserWindow.cpp b/Userland/Applications/Browser/BrowserWindow.cpp index 88d1fc6f34..7d77766c33 100644 --- a/Userland/Applications/Browser/BrowserWindow.cpp +++ b/Userland/Applications/Browser/BrowserWindow.cpp @@ -434,7 +434,7 @@ void BrowserWindow::create_new_tab(URL url, bool activate) }; new_tab.on_tab_close_request = [this](auto& tab) { - m_tab_widget->deferred_invoke([this, &tab](auto&) { + m_tab_widget->deferred_invoke([this, &tab] { m_tab_widget->remove_tab(tab); m_tab_widget->set_bar_visible(!is_fullscreen() && m_tab_widget->children().size() > 1); if (m_tab_widget->children().is_empty()) @@ -443,7 +443,7 @@ void BrowserWindow::create_new_tab(URL url, bool activate) }; new_tab.on_tab_close_other_request = [this](auto& tab) { - m_tab_widget->deferred_invoke([this, &tab](auto&) { + m_tab_widget->deferred_invoke([this, &tab] { m_tab_widget->remove_all_tabs_except(tab); VERIFY(m_tab_widget->children().size() == 1); m_tab_widget->set_bar_visible(false); -- cgit v1.2.3