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/debugger/dap | |
parent | 8d2cee31e4ecde69ae2577416d74cefdb891d8e8 (diff) |
Clean up some lambdas
Change-Id: Id947c0935b1aa4579e1c64d3e510db41103fbe27
Reviewed-by: Jarek Kobus <[email protected]>
Diffstat (limited to 'src/plugins/debugger/dap')
-rw-r--r-- | src/plugins/debugger/dap/pydapengine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/dap/pydapengine.cpp b/src/plugins/debugger/dap/pydapengine.cpp index 9f59d05f9ea..2c2e3eb9d11 100644 --- a/src/plugins/debugger/dap/pydapengine.cpp +++ b/src/plugins/debugger/dap/pydapengine.cpp @@ -91,7 +91,7 @@ public: m_timer = new QTimer(this); m_timer->setInterval(100); - connect(m_timer, &QTimer::timeout, this, [this]() { + connect(m_timer, &QTimer::timeout, this, [this] { m_socket.connectToHost(m_hostName, m_port); m_socket.waitForConnected(); |