diff options
author | hjk <[email protected]> | 2023-12-12 11:34:17 +0100 |
---|---|---|
committer | hjk <[email protected]> | 2023-12-12 10:55:32 +0000 |
commit | 016936a45032f2b443c336855c8ebe5b7e0d7e08 (patch) | |
tree | feff371aa38eaf9fa01904b78a2021806c71a959 /src/plugins/terminal/terminalwidget.cpp | |
parent | 8d2cee31e4ecde69ae2577416d74cefdb891d8e8 (diff) |
Clean up some lambdas
Change-Id: Id947c0935b1aa4579e1c64d3e510db41103fbe27
Reviewed-by: Jarek Kobus <[email protected]>
Diffstat (limited to 'src/plugins/terminal/terminalwidget.cpp')
-rw-r--r-- | src/plugins/terminal/terminalwidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/terminal/terminalwidget.cpp b/src/plugins/terminal/terminalwidget.cpp index 64a1212e4a0..60a8656cc92 100644 --- a/src/plugins/terminal/terminalwidget.cpp +++ b/src/plugins/terminal/terminalwidget.cpp @@ -145,7 +145,7 @@ void TerminalWidget::setupPty() if (m_shellIntegration) m_shellIntegration->prepareProcess(*m_process.get()); - connect(m_process.get(), &Process::readyReadStandardOutput, this, [this]() { + connect(m_process.get(), &Process::readyReadStandardOutput, this, [this] { onReadyRead(false); }); |