aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qquicktextinput
diff options
context:
space:
mode:
authorAndrew den Exter <andrew.den-exter@nokia.com>2011-11-10 14:19:32 +1000
committerQt by Nokia <qt-info@nokia.com>2011-12-12 12:56:20 +0100
commit3f83388dba250778a265c4c6c35bd32679123832 (patch)
tree5b482a9b436b35124982b3907eb095f794d35aff /tests/auto/qtquick2/qquicktextinput
parent6462526df9eff416c3ab1dcd111a3e7c7751615d (diff)
Create a copy of QLineControl in the QtDeclarative library.
First half of a move of QLineControl from qtbase to qtdeclarative, some time in the future QLineControl will be deleted from qtbase to finish the move. Task-number: QTBUG-22627 Change-Id: I0c3449f57f1a3296a0ff52f2b9a1a78041ae28b2 Reviewed-by: Joona Petrell <joona.t.petrell@nokia.com>
Diffstat (limited to 'tests/auto/qtquick2/qquicktextinput')
-rw-r--r--tests/auto/qtquick2/qquicktextinput/tst_qquicktextinput.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qtquick2/qquicktextinput/tst_qquicktextinput.cpp b/tests/auto/qtquick2/qquicktextinput/tst_qquicktextinput.cpp
index 6344768738..e4ea569f45 100644
--- a/tests/auto/qtquick2/qquicktextinput/tst_qquicktextinput.cpp
+++ b/tests/auto/qtquick2/qquicktextinput/tst_qquicktextinput.cpp
@@ -1823,7 +1823,7 @@ void tst_qquicktextinput::canPasteEmpty() {
QQuickTextInput *textInput = qobject_cast<QQuickTextInput*>(textInputComponent.create());
QVERIFY(textInput != 0);
- QLineControl lc;
+ QQuickLineControl lc;
bool cp = !lc.isReadOnly() && QGuiApplication::clipboard()->text().length() != 0;
QCOMPARE(textInput->canPaste(), cp);
@@ -1841,7 +1841,7 @@ void tst_qquicktextinput::canPaste() {
QQuickTextInput *textInput = qobject_cast<QQuickTextInput*>(textInputComponent.create());
QVERIFY(textInput != 0);
- QLineControl lc;
+ QQuickLineControl lc;
bool cp = !lc.isReadOnly() && QGuiApplication::clipboard()->text().length() != 0;
QCOMPARE(textInput->canPaste(), cp);