pass key events to board

This commit is contained in:
ehouse 2005-01-10 01:41:38 +00:00
parent 9f2321751f
commit d4a344a8af

View file

@ -692,6 +692,10 @@ CXWordsAppView::HandleKeyEvent( const TKeyEvent& aKeyEvent )
break; break;
default: default:
key = (XP_Key)aKeyEvent.iScanCode;
if ( key < 0x20 || key > 0x7f ) {
key = XP_KEY_NONE;
}
break; break;
} }
@ -769,7 +773,6 @@ CXWordsAppView::FindAllDicts()
/* NOTE: CEikFileNameSelector might be the way to do this and the display /* NOTE: CEikFileNameSelector might be the way to do this and the display
* of the list in the game setup dialog. * of the list in the game setup dialog.
*/ */
TBool found = EFalse; TBool found = EFalse;
RFs fileSession; RFs fileSession;
User::LeaveIfError(fileSession.Connect()); User::LeaveIfError(fileSession.Connect());