diff options
author | Janne Anttila <janne.anttila@digia.com> | 2009-06-12 08:03:55 (GMT) |
---|---|---|
committer | Janne Anttila <janne.anttila@digia.com> | 2009-06-12 08:03:55 (GMT) |
commit | 915e8a40866d0e86bcaaf3d72d26897bebf00a41 (patch) | |
tree | 4770e479cc154c04387a9ffa642067ba0b6d3f53 /src/gui | |
parent | f0044749d5e9905e2f7af9c0aa54e4d77cab13af (diff) | |
download | Qt-915e8a40866d0e86bcaaf3d72d26897bebf00a41.zip Qt-915e8a40866d0e86bcaaf3d72d26897bebf00a41.tar.gz Qt-915e8a40866d0e86bcaaf3d72d26897bebf00a41.tar.bz2 |
Fixes FEP crash when changing the focused Qt widget to NULL.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/inputmethod/qcoefepinputcontext_s60.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/inputmethod/qcoefepinputcontext_s60.cpp b/src/gui/inputmethod/qcoefepinputcontext_s60.cpp index b183e1b..7d79422 100644 --- a/src/gui/inputmethod/qcoefepinputcontext_s60.cpp +++ b/src/gui/inputmethod/qcoefepinputcontext_s60.cpp @@ -329,6 +329,8 @@ void QCoeFepInputContext::updateHints() m_lastImHints = hints; applyHints(hints); } + } else { + CCoeEnv::Static()->InputCapabilitiesChanged(); } } |