Sur cette page

Duplicate id

Cette catégorie d'avertissement est orthographiée [syntax.duplicate-ids] par qmllint.

Un identifiant dupliqué a été trouvé

Qu'est-ce qui s'est passé ?

Vous avez utilisé la même valeur pour différents identifiants.

Pourquoi est-ce mauvais ?

Le langage QML interdit les identifiants dupliqués : ils doivent tous être uniques dans le même composant QML.

Exemple

import QtQuick

Item {
    id: root
    Item {
        id: root
    }
}

Pour corriger cet avertissement, renommez le doublon pour qu'il devienne unique :

import QtQuick

Item {
    id: root
    Item {
        id: notRoot
    }
}

© 2026 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.