Android: Fix compilation with Qt 4.

Change-Id: I2a25cbb19246526702c91b41e3e62f05f7833e87
Reviewed-by: Christian Stenger <christian.stenger@digia.com>
This commit is contained in:
Friedemann Kleint
2014-07-30 09:22:20 +02:00
committed by Christian Stenger
parent ac039f9655
commit ca23a29178

View File

@@ -208,7 +208,7 @@ static QPair<QStringList, bool> checkGdbForBrokenPython(const QStringList &paths
if (output.contains("(gdb)"))
break;
if (timer.elapsed() > 7 * 1000)
return qMakePair(path, true); // Took too long, abort
return qMakePair(QStringList(path), true); // Took too long, abort
}
output.clear();
@@ -219,7 +219,7 @@ static QPair<QStringList, bool> checkGdbForBrokenPython(const QStringList &paths
proc.write("quit\n");
while (proc.waitForFinished(300)) {
if (timer.elapsed() > 9 * 1000)
return qMakePair(path, true); // Took too long, abort
return qMakePair(QStringList(path), true); // Took too long, abort
}
proc.waitForFinished();