mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-17 18:12:01 +01:00
pass key events to board
This commit is contained in:
parent
9f2321751f
commit
d4a344a8af
1 changed files with 4 additions and 1 deletions
|
@ -692,6 +692,10 @@ CXWordsAppView::HandleKeyEvent( const TKeyEvent& aKeyEvent )
|
|||
break;
|
||||
|
||||
default:
|
||||
key = (XP_Key)aKeyEvent.iScanCode;
|
||||
if ( key < 0x20 || key > 0x7f ) {
|
||||
key = XP_KEY_NONE;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -769,7 +773,6 @@ CXWordsAppView::FindAllDicts()
|
|||
/* NOTE: CEikFileNameSelector might be the way to do this and the display
|
||||
* of the list in the game setup dialog.
|
||||
*/
|
||||
|
||||
TBool found = EFalse;
|
||||
RFs fileSession;
|
||||
User::LeaveIfError(fileSession.Connect());
|
||||
|
|
Loading…
Reference in a new issue