diff -r 6defe5d1bd39 -r 4eb1ae11334f textinput/peninputfingerhwr/src/peninputfingerhwrengine.cpp --- a/textinput/peninputfingerhwr/src/peninputfingerhwrengine.cpp Wed Mar 31 22:08:20 2010 +0300 +++ b/textinput/peninputfingerhwr/src/peninputfingerhwrengine.cpp Wed Apr 14 16:18:34 2010 +0300 @@ -20,7 +20,8 @@ #include #include #include -#include "PtiDefs.h" +#include +#include //USER INCLUDES #include "peninputfingerhwrengine.h" @@ -671,7 +672,7 @@ void CAknFepHwrEngine::ResetKeyboardType() { #ifdef RD_INTELLIGENT_TEXT_INPUT - RProperty::Set(KCRUidAvkon, KAknKeyBoardLayout, iKeyboardType); + RProperty::Set( KPSUidAknFep, KAknFepVirtualKeyboardType, iKeyboardType ); #endif } @@ -682,7 +683,7 @@ void CAknFepHwrEngine::SetKeyboardToQwerty() { #ifdef RD_INTELLIGENT_TEXT_INPUT - RProperty::Set(KCRUidAvkon, KAknKeyBoardLayout, EPtiKeyboardQwerty4x12); + RProperty::Set( KPSUidAknFep, KAknFepVirtualKeyboardType, EPtiKeyboardQwerty4x12 ); #endif } @@ -693,7 +694,7 @@ void CAknFepHwrEngine::GetKeyboardType() { #ifdef RD_INTELLIGENT_TEXT_INPUT - RProperty::Get(KCRUidAvkon, KAknKeyBoardLayout, iKeyboardType); + RProperty::Get( KPSUidAknFep, KAknFepVirtualKeyboardType, iKeyboardType ); #endif }