Skip to content

Commit

Permalink
mathassistant: No such signal QProcess::error
Browse files Browse the repository at this point in the history
qt.core.qobject.connect: QObject::connect: No such signal QProcess::error(QProcess::ProcessError)
  • Loading branch information
octaeder committed Feb 11, 2024
1 parent 5321280 commit 6e8933a
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 6e8933a

Please sign in to comment.