src/hbplugins/inputmethods/common/hbinputbasichandler.cpp
changeset 21 4633027730f5
parent 7 923ff622b8b9
child 23 e6ad4ef83b23
equal deleted inserted replaced
7:923ff622b8b9 21:4633027730f5
   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