summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authoraxis <qt-info@nokia.com>2010-09-01 11:53:32 (GMT)
committeraxis <qt-info@nokia.com>2010-09-01 13:09:46 (GMT)
commit5ca6264933af60b3cd376b7f08bea008fa69b515 (patch)
tree19849b13b22d53b50973c983c4df385cfe253ada /tests
parentf0ec1d2ec229f5a2c47dfa9392a2625da25fc69f (diff)
downloadQt-5ca6264933af60b3cd376b7f08bea008fa69b515.zip
Qt-5ca6264933af60b3cd376b7f08bea008fa69b515.tar.gz
Qt-5ca6264933af60b3cd376b7f08bea008fa69b515.tar.bz2
Fixed input context trying to squeeze content into a full widget.
Problem was reproduced on N97. If the FEP detects that the widget is full while still editing text, it will try to send those events as key events instead. Since this screws up the content in the widget, we stop those events from reaching the widget in the input context. AutoTest: Passed Task: QTBUG-12949 RevBy: Miikka Heikkinen
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qinputcontext/tst_qinputcontext.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/auto/qinputcontext/tst_qinputcontext.cpp b/tests/auto/qinputcontext/tst_qinputcontext.cpp
index c90cc5b..93813f9 100644
--- a/tests/auto/qinputcontext/tst_qinputcontext.cpp
+++ b/tests/auto/qinputcontext/tst_qinputcontext.cpp
@@ -932,9 +932,6 @@ void tst_QInputContext::symbianTestCoeFepInputContext()
QApplication::processEvents();
QCOMPARE(lineedit->text(), finalString);
- QEXPECT_FAIL("Numbers with movement, maxlength, password and unfinished text"
- , "Fails due to QTBUG-12949"
- , Continue);
QCOMPARE(ic->m_preeditString, preeditString);
#endif
}