Doppelte Inline-Komponenten

Diese Warnkategorie wird von qmllint mit [duplicate-inline-component] angegeben.

Doppelte Inline-Komponente

Was ist passiert?

Zwei Inline-Komponenten haben den gleichen Namen.

Warum ist das schlecht?

Ein Name verweist auf mehr als einen Typ und verursacht eine Mehrdeutigkeit. Dies wird nicht kompiliert.

Beispiel

import QtQuick

Item {
    component R : Rectangle { color: "red" }
    component R : Rectangle { color: "blue" } // Fail to compile
}

Um diese Warnung zu beheben, entfernen oder benennen Sie eine der Inline-Komponenten um:

import QtQuick

Item {
    component RedRectangle : Rectangle { color: "red" }
    component BlueRectangle : Rectangle { color: "blue" }
}

© 2025 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.