aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/snippets/data/qtlabscalendar-dayofweekrow-layout.qml
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2015-10-22 16:52:10 +0200
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2015-10-30 15:41:26 +0000
commit53a9c9e2c01199aec3c0848593226f8a3e7d5dee (patch)
tree82dc1480fcd2817da1e206ffd9863021c4b3f107 /tests/auto/snippets/data/qtlabscalendar-dayofweekrow-layout.qml
parent72f3a5a0957e4347f8f3db6d4638866e52a8ab61 (diff)
Move the code snippets to a more logical place
They are part of the documentation, but just auto-tested to ensure that they are actually creatable and don't throw warnings. Therefore the logical place is in the doc/snippets folder instead of somewhere in the tests/ tree. Change-Id: Id79a19890f7457ef277e7434a3fc6b6fb20eaa25 Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
Diffstat (limited to 'tests/auto/snippets/data/qtlabscalendar-dayofweekrow-layout.qml')
-rw-r--r--tests/auto/snippets/data/qtlabscalendar-dayofweekrow-layout.qml20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/auto/snippets/data/qtlabscalendar-dayofweekrow-layout.qml b/tests/auto/snippets/data/qtlabscalendar-dayofweekrow-layout.qml
deleted file mode 100644
index dc009c6a..00000000
--- a/tests/auto/snippets/data/qtlabscalendar-dayofweekrow-layout.qml
+++ /dev/null
@@ -1,20 +0,0 @@
-import QtQuick 2.0
-import QtQuick.Layouts 1.0
-import Qt.labs.calendar 1.0
-
-//! [1]
-ColumnLayout {
- DayOfWeekRow {
- locale: grid.locale
- Layout.fillWidth: true
- }
-
- MonthGrid {
- id: grid
- month: Calendar.December
- year: 2015
- locale: Qt.locale("en_US")
- Layout.fillWidth: true
- }
-}
-//! [1]