aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/snippets/data/checkbox/qtquickcontrols2-checkbox-checked.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/snippets/data/checkbox/qtquickcontrols2-checkbox-checked.qml')
-rw-r--r--tests/auto/snippets/data/checkbox/qtquickcontrols2-checkbox-checked.qml7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/auto/snippets/data/checkbox/qtquickcontrols2-checkbox-checked.qml b/tests/auto/snippets/data/checkbox/qtquickcontrols2-checkbox-checked.qml
new file mode 100644
index 00000000..0e0de49a
--- /dev/null
+++ b/tests/auto/snippets/data/checkbox/qtquickcontrols2-checkbox-checked.qml
@@ -0,0 +1,7 @@
+import QtQuick 2.0
+import QtQuick.Controls 2.0
+
+CheckBox {
+ text: "Checked"
+ checked: true
+}