diff options
Diffstat (limited to 'share/qtcreator/templates')
3 files changed, 3 insertions, 3 deletions
diff --git a/share/qtcreator/templates/qtquick/qtquickcontrols_1_0/main.qml b/share/qtcreator/templates/qtquick/qtquickcontrols_1_0/main.qml index bece7d88e9..3498b9459c 100644 --- a/share/qtcreator/templates/qtquick/qtquickcontrols_1_0/main.qml +++ b/share/qtcreator/templates/qtquick/qtquickcontrols_1_0/main.qml @@ -21,7 +21,7 @@ ApplicationWindow { } } - Text { + Label { text: qsTr("Hello World") anchors.centerIn: parent } diff --git a/share/qtcreator/templates/qtquick/qtquickcontrols_1_1/main.qml b/share/qtcreator/templates/qtquick/qtquickcontrols_1_1/main.qml index cd9583c14d..57bd8901ef 100644 --- a/share/qtcreator/templates/qtquick/qtquickcontrols_1_1/main.qml +++ b/share/qtcreator/templates/qtquick/qtquickcontrols_1_1/main.qml @@ -21,7 +21,7 @@ ApplicationWindow { } } - Text { + Label { text: qsTr("Hello World") anchors.centerIn: parent } diff --git a/share/qtcreator/templates/qtquick/qtquickcontrols_1_2/main.qml b/share/qtcreator/templates/qtquick/qtquickcontrols_1_2/main.qml index cc2db21d98..5c7e2a7392 100644 --- a/share/qtcreator/templates/qtquick/qtquickcontrols_1_2/main.qml +++ b/share/qtcreator/templates/qtquick/qtquickcontrols_1_2/main.qml @@ -21,7 +21,7 @@ ApplicationWindow { } } - Text { + Label { text: qsTr("Hello World") anchors.centerIn: parent } |