diff options
author | Shane Kearns <shane.kearns@accenture.com> | 2010-08-06 12:00:54 +0100 |
---|---|---|
committer | Shane Kearns <shane.kearns@accenture.com> | 2010-08-06 12:00:54 +0100 |
commit | e4c144db1cde192745a198160a01fca1416fe855 (patch) | |
tree | 63a4b60222c3283e837d65b2e9c50a271b11eafe /src/gui/inputmethod/qcoefepinputcontext_s60.cpp | |
parent | d2a52ba7d5fa48632d6f0092da8db97188993252 (diff) | |
download | qt4-tools-e4c144db1cde192745a198160a01fca1416fe855.tar.gz |
fix compile error
Task-number: QT-3681
Reviewed-by: Trust Me
Diffstat (limited to 'src/gui/inputmethod/qcoefepinputcontext_s60.cpp')
-rw-r--r-- | src/gui/inputmethod/qcoefepinputcontext_s60.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/inputmethod/qcoefepinputcontext_s60.cpp b/src/gui/inputmethod/qcoefepinputcontext_s60.cpp index cd05e3810f..ae51b1ce7f 100644 --- a/src/gui/inputmethod/qcoefepinputcontext_s60.cpp +++ b/src/gui/inputmethod/qcoefepinputcontext_s60.cpp @@ -406,7 +406,7 @@ void QCoeFepInputContext::applyHints(Qt::InputMethodHints hints) flags |= EAknEditorNumericInputMode; } if (QSysInfo::s60Version() > QSysInfo::SV_S60_5_0 - && ((hints & ImhFormattedNumbersOnly) || (hints & ImhDialableCharactersOnly)) { + && ((hints & ImhFormattedNumbersOnly) || (hints & ImhDialableCharactersOnly))) { //workaround - the * key does not launch the symbols menu, making it impossible to use these modes unless text mode is enabled. flags |= EAknEditorTextInputMode; } |