Skip to content

Commit 9f97039

Browse files
fix: Fix missing function
1 parent d0588e8 commit 9f97039

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SimpleAuthSystem.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ void SimpleAuthSystem::sendHttpRequest(const QString &endpoint, const QString &d
8484

8585
statusLabel->setText("正在发送请求...");
8686

87-
connect(process, &QProcess::finished, this, [=](int exitCode, QProcess::ExitStatus exitStatus)
87+
connect(process, &QProcess::finished, this, [=, this](int exitCode, QProcess::ExitStatus exitStatus)
8888
{
8989
QString response = QString::fromUtf8(process->readAllStandardOutput());
9090
QString error = QString::fromUtf8(process->readAllStandardError());

0 commit comments

Comments
 (0)