Fix QSR wizard cmake-project template

Latest changes to QSR tooling added limit checking for certain properties,
so the cmake-project template needs to be updated slightly.

Additionally remove the import versioning.

Task-number: QSR-2398
Change-Id: I55542c9fd74ebd950b6aeb9b64a22dde177c5a4f
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Teemu Holappa <teemu.holappa@qt.io>
This commit is contained in:
Jussi Witick
2024-03-28 09:38:12 +02:00
parent e8d6e4fc34
commit 574ad7a4a2

View File

@@ -1,5 +1,5 @@
import Qt.SafeRenderer 2.0 import Qt.SafeRenderer
import QtQuick.Window 2.15 import QtQuick.Window
Window { Window {
id: window id: window
@@ -14,13 +14,12 @@ Window {
x: 206 x: 206
y: 208 y: 208
width: 340 width: 340
height: 34 height: 40
color: "#8ae234" color: "#8ae234"
fillColor: "black" fillColor: "black"
text: "Hello Qt Safe Renderer!" text: "Hello Qt Safe Renderer!"
font.family: "Lato" font.family: "Lato"
horizontalAlignment: Text.AlignLeft horizontalAlignment: Text.AlignLeft
font.pixelSize: 32 font.pixelSize: 32
runtimeEditable: true
} }
} }