From df7214fdb596ad4854c52d7f85e57643997a9d0e Mon Sep 17 00:00:00 2001 From: in1tiate Date: Tue, 19 Jul 2022 08:10:07 -0500 Subject: Make lambda captures of 'this' explicit --- src/courtroom.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/courtroom.cpp') diff --git a/src/courtroom.cpp b/src/courtroom.cpp index 30d226e1..4581c2a2 100644 --- a/src/courtroom.cpp +++ b/src/courtroom.cpp @@ -1807,7 +1807,7 @@ void Courtroom::on_chat_return_pressed() ui_ic_chat_message->blockSignals(true); QTimer::singleShot(ao_app->get_chat_ratelimit(), this, - [=] { ui_ic_chat_message->blockSignals(false); }); + [this] { ui_ic_chat_message->blockSignals(false); }); // MS# // deskmod# // pre-emote# -- cgit