Doppelte Enum-Einträge
Diese Warnkategorie wird von qmllint [duplicate-enum-entries]
geschrieben.
Enum-Schlüssel X wurde bereits deklariert
Was ist passiert?
Eine Enum enthält zwei identische Einträge.
Warum ist das schlecht?
Derselbe Schlüssel ist mit mehreren Werten verbunden. Es ist nicht klar, welcher davon verwendet wird.
Beispiel
import QtQuick
Item {
enum E { A = 0, B = 1, C = 2, A = 3 }
}
Um diese Warnung zu beheben, entfernen oder benennen Sie doppelte Enum-Einträge um:
import QtQuick
Item {
enum E { A = 0, B = 1, C = 2, D = 3 }
}
© 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.