Symbian: running process is identified by its UID3 instead of the its name

This commit is contained in:
Pawel Polanski
2011-02-04 11:07:15 +01:00
parent 8c65637407
commit 0d9da49d46

View File

@@ -284,7 +284,9 @@ void CodaRunControl::handleLogging(const TcfTrkEvent &event)
void CodaRunControl::handleAddListener(const TcfTrkCommandResult &result)
{
Q_UNUSED(result)
m_tcfTrkDevice->sendSymbianOsDataFindProcessesCommand(TcfTrkCallback(this, &CodaRunControl::handleFindProcesses), executableName().toLatin1(), "0");
m_tcfTrkDevice->sendSymbianOsDataFindProcessesCommand(TcfTrkCallback(this, &CodaRunControl::handleFindProcesses),
QByteArray(),
QByteArray::number(executableUid(), 16));
}
void CodaRunControl::handleFindProcesses(const TcfTrkCommandResult &result)