Debugger: Fix compile with Qt5

Amends f4ea9e09ec.

Change-Id: I642c99ffe9a932c6c74b771eab5d2122d01b1ee3
Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
Christian Stenger
2022-06-24 06:54:40 +02:00
parent c3cb262154
commit 818451fa9e

View File

@@ -298,7 +298,7 @@ QString CdbEngine::extensionLibraryName(bool is64Bit, bool isArm)
return QString("%1/lib/" QT_CREATOR_CDB_EXT "%2%3/" QT_CREATOR_CDB_EXT ".dll") return QString("%1/lib/" QT_CREATOR_CDB_EXT "%2%3/" QT_CREATOR_CDB_EXT ".dll")
.arg(QFileInfo(QCoreApplication::applicationDirPath()).path()) .arg(QFileInfo(QCoreApplication::applicationDirPath()).path())
.arg(isArm ? "arm" : QString()) .arg(isArm ? "arm" : QString())
.arg(is64Bit ? "64": "32"); .arg(is64Bit ? QLatin1String("64") : QLatin1String("32"));
} }
int CdbEngine::elapsedLogTime() int CdbEngine::elapsedLogTime()