Details
-
Bug
-
Resolution: Unresolved
-
P1: Critical
-
6.11.0 FF
-
None
Description
Hi,
Since https://codereview.qt-project.org/c/qt/qtdeclarative/+/657286
Android fails to compile with deprecated up to 0x070000
This is because https://codereview.qt-project.org/c/qt/qtdeclarative/+/657286/5/src/qml/qml/qqmlfile.cpp#28 wraps the variables under deprecation, but https://codereview.qt-project.org/c/qt/qtdeclarative/+/657286/5/src/qml/qml/qqmlfile.cpp#510 does not.
error: use of undeclared identifier 'assets_string'; did you mean 'file_string'?
510 | } else if (scheme.length() == 6 && 0 == scheme.compare(QLatin1String(assets_string), Qt::CaseInsensitive)) {
: error: use of undeclared identifier 'content_string'
559 | url.startsWith(QLatin1String(content_string), Qt::CaseInsensitive) &&