diff -r f27aebe284bb -r c5af8598d22c logsui/logscntfinder/src/logspredictive12keytranslator.cpp --- a/logsui/logscntfinder/src/logspredictive12keytranslator.cpp Wed Aug 18 09:49:12 2010 +0300 +++ b/logsui/logscntfinder/src/logspredictive12keytranslator.cpp Thu Sep 02 20:27:05 2010 +0300 @@ -104,8 +104,10 @@ const QChar LogsPredictive12KeyTranslator::translateChar( const QChar character ) const { - const HbMappedKey* mappedKey = - mKeyMap->keyForCharacter( HbKeyboardVirtual12Key, character ); + const HbMappedKey* mappedKey = 0; + if ( mKeyMap ) { + mappedKey = mKeyMap->keyForCharacter( HbKeyboardVirtual12Key, character ); + } return mappedKey ? mappedKey->keycode : QChar(); }