diff options
| author | oldmud0 <oldmud0@users.noreply.github.com> | 2022-07-23 16:31:37 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-23 16:31:37 -0500 |
| commit | 0dac3cc2c017e8c785cb00c340ea37e050eb6366 (patch) | |
| tree | 68a3cdf38932dec0854d81a07eb40d9526b08977 /src/courtroom.cpp | |
| parent | b0a958e7444193cd8e2b3e15027642b794ea5b8e (diff) | |
| parent | df7214fdb596ad4854c52d7f85e57643997a9d0e (diff) | |
Merge pull request #819 from AttorneyOnline/lambda-core
Make lambda captures of 'this' explicit
Diffstat (limited to 'src/courtroom.cpp')
| -rw-r--r-- | src/courtroom.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/courtroom.cpp b/src/courtroom.cpp index 799e9fe2..1884c7c8 100644 --- a/src/courtroom.cpp +++ b/src/courtroom.cpp @@ -1829,7 +1829,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# |
