aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcachegen/data/componentInItem.qml
blob: 820b9fddcd0eae8ad315fb74e99fbae3daf2b955 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.12

Item {
    Component {
        Rectangle {
            id: xxx
            Text {
                text: qsTr("&Undo")
            }
            Text {
                text: qsTr("&Redo")
            }
        }
    }
}