Fix unused lambda parameter

This commit is contained in:
baldurk
2019-07-31 19:07:56 +01:00
parent 069e5f435f
commit f7d988b9cf
+1 -1
View File
@@ -1865,7 +1865,7 @@ void MainWindow::setRemoteHost(int hostIdx)
if(res == QMessageBox::Yes)
{
LambdaThread *launchthread = new LambdaThread([this, &host]() {
LambdaThread *launchthread = new LambdaThread([&host]() {
// since we have a protocol, try to force-launch which should attempt to reinstall.
host.Launch();