중복된 이름
이 경고 범주의 철자는 [duplicated-name] 입니다.
중복된 속성, 신호 또는 메서드 이름
무슨 일이 일어났나요?
속성, 신호 또는 메서드에 현재 QML 컴포넌트에서 이미 사용 중인 이름을 지정했습니다.
이것이 왜 나쁜가요?
QML 런타임은 런타임에 중복된 멤버 이름을 가진 컴포넌트를 생성하지 않으며 대신 null이 됩니다.
예시
import QtQuick Item { property int helloWorld property int helloWorld // duplicate property signal helloWorld() // duplicate signal }
이 경고를 해결하려면 중복된 멤버를 제거하거나 이름을 바꾸세요:
© 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.