summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSami Merila <sami.merila@nokia.com>2010-12-13 08:28:42 (GMT)
committerSami Merila <sami.merila@nokia.com>2010-12-13 08:28:42 (GMT)
commit6160f8541e4d7cb66de7680b5fb439fb757c59dd (patch)
treef466ee0f4d1b8713dc9da8944cb92d2cc22daa5b /src
parentd5d35896457d580f834c5954c3c387b76efd27e1 (diff)
downloadQt-6160f8541e4d7cb66de7680b5fb439fb757c59dd.zip
Qt-6160f8541e4d7cb66de7680b5fb439fb757c59dd.tar.gz
Qt-6160f8541e4d7cb66de7680b5fb439fb757c59dd.tar.bz2
Symbian specific input methods should use 'Text' mode as default case
Currently default case is 'lower'. It makes more sense to set the default as 'Text', as it is natural default case for most text entries. Task-number: QTBUG-10311 Reviewed-by: Miikka Heikkinen
Diffstat (limited to 'src')
-rw-r--r--src/gui/inputmethod/qcoefepinputcontext_s60.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/inputmethod/qcoefepinputcontext_s60.cpp b/src/gui/inputmethod/qcoefepinputcontext_s60.cpp
index 4a1b9b9..5e8a2e1 100644
--- a/src/gui/inputmethod/qcoefepinputcontext_s60.cpp
+++ b/src/gui/inputmethod/qcoefepinputcontext_s60.cpp
@@ -89,7 +89,7 @@ QCoeFepInputContext::QCoeFepInputContext(QObject *parent)
m_fepState->SetFlags(EAknEditorFlagDefault);
m_fepState->SetDefaultInputMode( EAknEditorTextInputMode );
m_fepState->SetPermittedInputModes( EAknEditorAllInputModes );
- m_fepState->SetDefaultCase( EAknEditorLowerCase );
+ m_fepState->SetDefaultCase( EAknEditorTextCase );
m_fepState->SetPermittedCases( EAknEditorAllCaseModes );
m_fepState->SetSpecialCharacterTableResourceId(R_AVKON_SPECIAL_CHARACTER_TABLE_DIALOG);
m_fepState->SetNumericKeymap( EAknEditorStandardNumberModeKeymap );