forked from qt-creator/qt-creator
Small Qt 6 migration stuff
- qsizetype vs int - QJsonValue vs QJsonValueRef - #include for metatype system Task-number: QTCREATORBUG-24098 Change-Id: I066d9e3d5c35766b8aa3adc1c5835b23feb20b37 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -2028,7 +2028,7 @@ InstallsList QmakeProFile::installsList(const QtSupport::ProFileReader *reader,
|
||||
const QStringList &itemPaths = reader->values(pathVar);
|
||||
if (itemPaths.count() != 1) {
|
||||
qDebug("Invalid RHS: Variable '%s' has %d values.",
|
||||
qPrintable(pathVar), itemPaths.count());
|
||||
qPrintable(pathVar), int(itemPaths.count()));
|
||||
if (itemPaths.isEmpty()) {
|
||||
qDebug("%s: Ignoring INSTALLS item '%s', because it has no path.",
|
||||
qPrintable(projectFilePath), qPrintable(item));
|
||||
|
||||
Reference in New Issue
Block a user