Skip to content

Commit

Permalink
mathassistant: No such signal QProcess::error (texstudio-org#3512)
Browse files Browse the repository at this point in the history
  • Loading branch information
octaeder authored Feb 11, 2024
1 parent 5321280 commit 739e4ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mathassistant.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ MathAssistant *MathAssistant::m_Instance = nullptr;
MathAssistant::MathAssistant() :
QObject()
{
connect(&process, SIGNAL(error(QProcess::ProcessError)), this, SLOT(processError(QProcess::ProcessError)));
connect(&process, SIGNAL(errorOccurred(QProcess::ProcessError)), this, SLOT(processError(QProcess::ProcessError)));
connect(&process, SIGNAL(finished(int, QProcess::ExitStatus)), this, SLOT(processFinished(int, QProcess::ExitStatus)));
}

Expand Down

0 comments on commit 739e4ee

Please sign in to comment.