diff -r 6ceef9a83b1a -r 6defe5d1bd39 textinput/peninputcommonctrls/src/peninputbuttons/peninputbutton.cpp --- a/textinput/peninputcommonctrls/src/peninputbuttons/peninputbutton.cpp Mon Mar 15 12:42:02 2010 +0200 +++ b/textinput/peninputcommonctrls/src/peninputbuttons/peninputbutton.cpp Wed Mar 31 22:08:20 2010 +0300 @@ -2453,7 +2453,9 @@ //PRINTF((_L("Set long press Timer\n"))); iLongPressTimer->SetTimer(iLongPressInterval); - + TInt unicode = Unicode(); + TPtrC ptr = (TUint16*)(&unicode); + ReportEvent(Event(), ptr); return CAknFepCtrlCommonButton::HandlePointerDownEventL(aPt); } @@ -2467,7 +2469,7 @@ CancelRepeat(); - return CAknFepCtrlEventButton::HandlePointerUpEventL(aPt); + return CAknFepCtrlCommonButton::HandlePointerUpEventL(aPt); } // --------------------------------------------------------- @@ -3903,7 +3905,7 @@ TRect src2Rect( TPoint( 0, 0 ), iForground2Bmp->SizeInPixels() ); if( bmpMask2 ) { - gc->BitBltMasked( rect.iTl, //fix EVWG-7PKC6J. layout of 2nd foreground is determined by image itself, but not hard code. + gc->BitBltMasked( rect.iTl, // layout of 2nd foreground is determined by image itself, but not hard code. iForground2Bmp, src2Rect, bmpMask2, @@ -3911,7 +3913,7 @@ } else { - gc->BitBlt( rect.iTl, //fix EVWG-7PKC6J. + gc->BitBlt( rect.iTl, iForground2Bmp, src2Rect ); }