diff -r 6ceef9a83b1a -r 6defe5d1bd39 fep/aknfep/src/aknfepuispellcontainer.cpp --- a/fep/aknfep/src/aknfepuispellcontainer.cpp Mon Mar 15 12:42:02 2010 +0200 +++ b/fep/aknfep/src/aknfepuispellcontainer.cpp Wed Mar 31 22:08:20 2010 +0300 @@ -84,6 +84,24 @@ } // --------------------------------------------------------------------------- +// CAknFepUiSpellContainer::SetInputWinFocus +// (other items were commented in a header) +// --------------------------------------------------------------------------- +// +void CAknFepUiSpellContainer::SetInputWinFocus( TBool aFocus ) + { + iInputPane->SetFocus( aFocus ); + // When release focus, remove from stack. + if( aFocus ) + { + iEikonEnv->EikAppUi()->AddToStackL( this, ECoeStackPriorityDialog ); + } + else + { + iEikonEnv->EikAppUi()->RemoveFromStack( this ); + } + } +// --------------------------------------------------------------------------- // CAknFepUiSpellContainer::ConstructL // (other items were commented in a header) // ---------------------------------------------------------------------------