aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testapplications/elements/content/XmlListModelElement.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testapplications/elements/content/XmlListModelElement.qml')
-rw-r--r--tests/testapplications/elements/content/XmlListModelElement.qml3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/testapplications/elements/content/XmlListModelElement.qml b/tests/testapplications/elements/content/XmlListModelElement.qml
index 9e4fc527db..255fa15209 100644
--- a/tests/testapplications/elements/content/XmlListModelElement.qml
+++ b/tests/testapplications/elements/content/XmlListModelElement.qml
@@ -40,6 +40,7 @@
****************************************************************************/
import QtQuick 2.0
+import QtQuick.XmlListModel 2.0
Item {
id: xmllistmodelelementtest
@@ -110,7 +111,7 @@ Item {
width: parent.width; wrapMode: Text.WordWrap; visible: opacity != 0; text: methodtext
anchors.horizontalCenter: parent.horizontalCenter; anchors.top: ingredientlist.bottom
Behavior on opacity { NumberAnimation { duration: 250 } }
- Component.onCompleted: { console.log(model.method); methodtext = model.method; console.log(recipemethod.textFormat); }
+ Component.onCompleted: { methodtext = model.method; }
}
MouseArea { anchors.fill: parent; onClicked: delbox.state = delbox.state == "open" ? "closed" : "open" }
Behavior on height { NumberAnimation { duration: 250 } }