Skip to content

Commit

Permalink
Fix fix fix
Browse files Browse the repository at this point in the history
  • Loading branch information
peterix committed May 17, 2023
1 parent 9970bed commit 9927537
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion launcher/java/JavaChecker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ void JavaChecker::performCheck()

connect(process.get(), &QProcess::finished, this, &JavaChecker::finished);
connect(process.get(), &QProcess::errorOccurred, this, &JavaChecker::error);
connect(process.get(), &QProcess::readyReadStandardError, this, &JavaChecker::stdoutReady);
connect(process.get(), &QProcess::readyReadStandardOutput, this, &JavaChecker::stdoutReady);
connect(process.get(), &QProcess::readyReadStandardError, this, &JavaChecker::stderrReady);
connect(&killTimer, &QTimer::timeout, this, &JavaChecker::timeout);
killTimer.setSingleShot(true);
Expand Down

0 comments on commit 9927537

Please sign in to comment.