UI text: Fix "the the" in visible UI text, comments, and docs

Change-Id: I9b126ffa15b808fdb6f900a36453a9864248d35e
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
Leena Miettinen
2023-11-13 11:05:44 +01:00
parent 48843d3f6b
commit 0ae211586e
9 changed files with 12 additions and 12 deletions

View File

@@ -218,7 +218,7 @@ QJsonObject qmlProjectTojson(const Utils::FilePath &projectFile)
QJsonObject mcuObject;
QJsonObject shaderToolObject;
// convert the the non-object props
// convert the non-object props
for (const QString &propName : rootNode->propertyNames()) {
QJsonObject *currentObj = &rootObject;
QString objKey = QString(propName).remove("QDS.", Qt::CaseInsensitive);
@@ -267,7 +267,7 @@ QJsonObject qmlProjectTojson(const Utils::FilePath &projectFile)
versionObject.insert("qt", "5");
}
// convert the the object props
// convert the object props
for (const QmlJS::SimpleReaderNode::Ptr &childNode : rootNode->children()) {
if (childNode->name().contains("files", Qt::CaseInsensitive)) {
PropsPair propsPair;