From 1e8db1266e5af20cbb0747f494ecd5379e6c5db2 Mon Sep 17 00:00:00 2001 From: Saravana Balaji Date: Tue, 16 Apr 2013 14:10:33 +0530 Subject: [PATCH] Tokenize on semicolon Change-Id: Ic15f058ff829d0fe790f8166c010ca503450314e Signed-off-by: Saravana Balaji --- src/ui/controls/FUiCtrl_TokenEditPresenter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui/controls/FUiCtrl_TokenEditPresenter.cpp b/src/ui/controls/FUiCtrl_TokenEditPresenter.cpp index 212ae66..a0a8b68 100755 --- a/src/ui/controls/FUiCtrl_TokenEditPresenter.cpp +++ b/src/ui/controls/FUiCtrl_TokenEditPresenter.cpp @@ -2844,8 +2844,8 @@ _TokenEditPresenter::OnTextCommitted(const String& commitText) result r = E_SUCCESS; char enterText[2] = {'\n', }; String enterTextComma(","); - String enterTextColon(":"); - if ((commitText == enterText) || (commitText == enterTextComma) || (commitText == enterTextColon)) + String enterTextSemiColon(";"); + if ((commitText == enterText) || (commitText == enterTextComma) || (commitText == enterTextSemiColon)) { CoreKeypadAction keypadaction = GetKeypadAction(); __pTokenEdit->SendKeypadEvent(keypadaction, CORE_KEYPAD_EVENT_STATUS_ENTERACTION); -- 2.7.4