diff -r 924385140d98 -r c2c61fdca848 coreapplicationuis/SysAp/Src/sysapkeymanagement.cpp --- a/coreapplicationuis/SysAp/Src/sysapkeymanagement.cpp Tue Aug 31 15:24:25 2010 +0300 +++ b/coreapplicationuis/SysAp/Src/sysapkeymanagement.cpp Wed Sep 01 12:24:48 2010 +0100 @@ -134,10 +134,6 @@ { iRootWindowGroup.CancelCaptureKeyUpAndDowns( info->iUpAndDownKeyHandles[upAndDownKeyHandleCounter] ); } - for ( TInt keyHandleCounter = info->iLongKeyPressHandle.Count()-1; keyHandleCounter >= 0; keyHandleCounter-- ) - { - iRootWindowGroup.CancelCaptureLongKey( info->iLongKeyPressHandle[keyHandleCounter] ); - } } } @@ -170,10 +166,8 @@ captureKey, info->iPluginUid ) ); if (info->iIsKeyProvider) { - TUint repeatValue = 0; TInt captureUpDownKey = info->iKeys[keyCounter].iScanCode; TUint modifiers = info->iKeys[keyCounter].iModifiers; - repeatValue = info->iKeys[keyCounter].iRepeats; TInt32 keyHandle = iRootWindowGroup.CaptureKey( captureKey, modifiers, modifiers ); @@ -202,19 +196,6 @@ //error of Append ignored, key will not be cancelled. We can live with that. TRACES( RDebug::Print( _L("CSysApKeyManagement::CaptureKeys UpAndDowns: Append failed, error %d"), upAndDownKeyHandle ) ); } - if( repeatValue == 1 ) - { - TInt32 longKeyPressHandle = iRootWindowGroup.CaptureLongKey( captureKey, captureKey,0, modifiers,0, ELongCaptureWaitShort); - if ( longKeyPressHandle < KErrNone ) - { - TRACES( RDebug::Print( _L("CSysApKeyManagement::CaptureLongKey : error %d"), longKeyPressHandle ) ); - continue; // other keys may be possible to capture, so continue - } - if ( ( longKeyPressHandle = info->iLongKeyPressHandle.Append( longKeyPressHandle ) ) != KErrNone ) //store handle for CancelCaptureKeyUpAndDowns - { - TRACES( RDebug::Print( _L("CSysApKeyManagement::CaptureLongKey : Append failed, error %d"), longKeyPressHandle ) ); - } - } } else {