ProjectExplorer/Valgrind: Disambiguate signal name

error => processError

To make it easier to use Qt5-style connect

Change-Id: Idfa987512ebb7d1c1c02d3cd01b2d05088cbf38a
Reviewed-by: hjk <hjk@theqtcompany.com>
This commit is contained in:
Orgad Shaneh
2015-02-06 11:41:57 +02:00
committed by hjk
parent 250cc0640b
commit 5b22e292bc
5 changed files with 6 additions and 6 deletions

View File

@@ -180,10 +180,10 @@ QString ValgrindProcess::errorString() const
return m_remote.m_errorString;
}
QProcess::ProcessError ValgrindProcess::error() const
QProcess::ProcessError ValgrindProcess::processError() const
{
if (isLocal())
return m_localProcess.error();
return m_localProcess.processError();
else
return m_remote.m_error;
}