summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/qdeclarativetextedit/cursorDelegate.qml
diff options
context:
space:
mode:
authorQt Continuous Integration System <qt-info@nokia.com>2010-11-05 15:41:16 (GMT)
committerQt Continuous Integration System <qt-info@nokia.com>2010-11-05 15:41:16 (GMT)
commitcaab2c851b4a1b67d57663d791e67f09c54b64fb (patch)
treedeb8245ba69f326fb43e87a13b1b1e5378d90a8f /tests/auto/declarative/qmlvisual/qdeclarativetextedit/cursorDelegate.qml
parent60b09b8915e2095b221eb0a16a76d49e5bb10391 (diff)
parentd2c204a93f30238c705209e65e2e8bce148825cd (diff)
downloadQt-caab2c851b4a1b67d57663d791e67f09c54b64fb.zip
Qt-caab2c851b4a1b67d57663d791e67f09c54b64fb.tar.gz
Qt-caab2c851b4a1b67d57663d791e67f09c54b64fb.tar.bz2
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integration
* '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: (24 commits) Image bounding rect should always include the area being painted Fix minehunt.pro (minehunt is no longer a plugin) Don't allow flagging of flipped tiles in Minehunt Remove Snake demo from QtDemo Fix samegame text input focus Whitespace fixes Update visual tests for Mac. Run all QML visual tests now. Make qmlvisual tests more stable Add documentation about script evaluation context and allowed types Maintain passing visualtests on X11 Fix errors in example code. Also reverts the example code to the old Largely rewrite the Using QML in C++ Applications documentation. It Document list type operations Fix regression in 648eb76c and update visual tests. Don't emit xChanged()/yChanged() twice. Add testcase for QTBUG-13719. Doc fix highlightranges.qml example and visual test contained binding loop. Combining ListView.StrictlyEnforceRange and resizing currentItem stalls. ...
Diffstat (limited to 'tests/auto/declarative/qmlvisual/qdeclarativetextedit/cursorDelegate.qml')
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetextedit/cursorDelegate.qml6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/cursorDelegate.qml
index 8798a5f..1e0f71a 100644
--- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/cursorDelegate.qml
+++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/cursorDelegate.qml
@@ -1,5 +1,7 @@
import QtQuick 1.0
- Rectangle {
+import "../shared" 1.0
+
+Rectangle {
resources: [
Component { id: cursorA
Item { id: cPage;
@@ -21,7 +23,7 @@ import QtQuick 1.0
width: 400
height: 200
color: "white"
- TextEdit { id: mainText
+ TestTextEdit { id: mainText
text: "Hello World"
cursorDelegate: cursorA
focus: true