From: Ulf Hermann Date: Tue, 14 Jul 2015 10:26:56 +0000 (+0200) Subject: Adapt to deprecation of QProcess::error(...) signal X-Git-Tag: v5.5.90+alpha1~171 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=27dc31de707daa761a163a92ebae940613f65280;p=platform%2Fupstream%2Fqtdeclarative.git Adapt to deprecation of QProcess::error(...) signal Change-Id: Icf708af4ab968c6592f78f90c3758e30dbe9195d Reviewed-by: Kai Koehne --- diff --git a/tests/auto/qml/debugger/shared/debugutil.cpp b/tests/auto/qml/debugger/shared/debugutil.cpp index 74f22e6..51d706b 100644 --- a/tests/auto/qml/debugger/shared/debugutil.cpp +++ b/tests/auto/qml/debugger/shared/debugutil.cpp @@ -91,7 +91,7 @@ QQmlDebugProcess::QQmlDebugProcess(const QString &executable, QObject *parent) m_timer.setSingleShot(true); m_timer.setInterval(5000); connect(&m_process, SIGNAL(readyReadStandardOutput()), this, SLOT(processAppOutput())); - connect(&m_process, SIGNAL(error(QProcess::ProcessError)), + connect(&m_process, SIGNAL(errorOccurred(QProcess::ProcessError)), this, SLOT(processError(QProcess::ProcessError))); connect(&m_timer, SIGNAL(timeout()), SLOT(timeout())); }