idlefw/plugins/wsplugin/src/numerickeyhandler.cpp
branchRCL_3
changeset 130 67f2ed48ad91
parent 114 a5a39a295112
equal deleted inserted replaced
122:6cadd6867c17 130:67f2ed48ad91
   194                 }
   194                 }
   195             }
   195             }
   196         }
   196         }
   197     
   197     
   198     // Homescreen should open dialer also with alpha characters, if dialer is in 
   198     // Homescreen should open dialer also with alpha characters, if dialer is in 
   199     // mode that accepts alpha characters into number entry (ou1cimx1#299396)    
   199     // mode that accepts alpha characters into number entry.
       
   200     // ou1cimx1#299396 & ou1cimx1#552069
   200     
   201     
   201     const TInt  KPhoneKeyStart = 33;
   202     const TInt  KPhoneKeyStart = 33;
   202     const TInt  KPhoneKeyEnd   = 127;
   203     const TInt  KPhoneKeyEnd   = 129;
   203     
   204     
   204     return ( ( AllowAlphaNumericMode() ) && ( ( scanCode >= KPhoneKeyStart &&
   205     return ( ( AllowAlphaNumericMode() ) && ( ( scanCode >= KPhoneKeyStart &&
   205              scanCode <= KPhoneKeyEnd ) || modifiers & EModifierSpecial ) );
   206              scanCode <= KPhoneKeyEnd ) || modifiers & EModifierSpecial ) );
   206     }
   207     }
   207 
   208