diff -r 7cee158cb8cd -r 26b2b12093af javauis/eswt_akn/org.eclipse.ercp.swt.s60/native/src/swtmobiledevice.cpp --- a/javauis/eswt_akn/org.eclipse.ercp.swt.s60/native/src/swtmobiledevice.cpp Wed Sep 15 12:05:25 2010 +0300 +++ b/javauis/eswt_akn/org.eclipse.ercp.swt.s60/native/src/swtmobiledevice.cpp Wed Oct 13 14:23:59 2010 +0300 @@ -11,7 +11,6 @@ #include -#include #include #include #include @@ -49,7 +48,7 @@ // CSwtMobileDevice::GetHwInputs // --------------------------------------------------------------------------- // -void CSwtMobileDevice::GetHwInputsL( +void CSwtMobileDevice::GetHwInputs( RArray& aInputs) { TInt mask; @@ -69,9 +68,9 @@ tempInput.iLocation = MSwtMobileDevice::ELocal; } tempInput.iType = MSwtInput::ESoftKeys; - aInputs.AppendL(tempInput); + aInputs.Append(tempInput); tempInput.iType = MSwtInput::EFullKeyboard; - aInputs.AppendL(tempInput); + aInputs.Append(tempInput); } if (mask & EKeyboard_Keypad) @@ -85,9 +84,9 @@ tempInput.iLocation = MSwtMobileDevice::ELocal; } tempInput.iType = MSwtInput::ESoftKeys; - aInputs.AppendL(tempInput); + aInputs.Append(tempInput); tempInput.iType = MSwtInput::EKeyPad; - aInputs.AppendL(tempInput); + aInputs.Append(tempInput); } }