equal
deleted
inserted
replaced
192 /*! |
192 /*! |
193 Action Handler for latin basic. |
193 Action Handler for latin basic. |
194 */ |
194 */ |
195 bool HbInputBasicHandler::actionHandler(HbInputModeAction action) |
195 bool HbInputBasicHandler::actionHandler(HbInputModeAction action) |
196 { |
196 { |
197 return HbInputModeHandler::actionHandler(action); |
197 bool ret = true; |
|
198 switch (action) { |
|
199 case HbInputModeActionRestorePreviousState: |
|
200 refreshAutoCompleter(); |
|
201 break; |
|
202 default: |
|
203 ret = HbInputModeHandler::actionHandler(action); |
|
204 } |
|
205 return ret; |
198 } |
206 } |
199 |
207 |
200 /*! |
208 /*! |
201 Commits the candidate upon closing of the candidate list. Now can the closing key be anything other than |
209 Commits the candidate upon closing of the candidate list. Now can the closing key be anything other than |
202 just selection. Need to evaluate this. When the candidate list is visible, the current implementation of the |
210 just selection. Need to evaluate this. When the candidate list is visible, the current implementation of the |