Skip to content
Snippets Groups Projects
Commit 549164d4 authored by Lioncash's avatar Lioncash
Browse files

yuzu/configuration/configure_web: Remove an unused lambda capture

'this' isn't actually used within the lambda, since what we need
from the class is already assigned within the capture section of
the lambda.
parent b8b87ec0
No related branches found
No related tags found
No related merge requests found
...@@ -90,11 +90,10 @@ void ConfigureWeb::OnLoginChanged() { ...@@ -90,11 +90,10 @@ void ConfigureWeb::OnLoginChanged() {
void ConfigureWeb::VerifyLogin() { void ConfigureWeb::VerifyLogin() {
ui->button_verify_login->setDisabled(true); ui->button_verify_login->setDisabled(true);
ui->button_verify_login->setText(tr("Verifying...")); ui->button_verify_login->setText(tr("Verifying..."));
verify_watcher.setFuture( verify_watcher.setFuture(QtConcurrent::run([username = ui->edit_username->text().toStdString(),
QtConcurrent::run([this, username = ui->edit_username->text().toStdString(), token = ui->edit_token->text().toStdString()] {
token = ui->edit_token->text().toStdString()]() { return Core::VerifyLogin(username, token);
return Core::VerifyLogin(username, token); }));
}));
} }
void ConfigureWeb::OnLoginVerified() { void ConfigureWeb::OnLoginVerified() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment