From d4a344a8afa0b12794e6253c9c627dd5468e8853 Mon Sep 17 00:00:00 2001 From: ehouse Date: Mon, 10 Jan 2005 01:41:38 +0000 Subject: [PATCH] pass key events to board --- symbian/src/xwappview.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/symbian/src/xwappview.cpp b/symbian/src/xwappview.cpp index f25d45992..11553b416 100644 --- a/symbian/src/xwappview.cpp +++ b/symbian/src/xwappview.cpp @@ -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());