diff -r 3f8368f032cf -r e3554c9069b6 gssettingsuis/Gs/GSFramework/src/GSParentContainer.cpp --- a/gssettingsuis/Gs/GSFramework/src/GSParentContainer.cpp Tue Feb 02 00:22:03 2010 +0200 +++ b/gssettingsuis/Gs/GSFramework/src/GSParentContainer.cpp Fri Mar 19 09:34:30 2010 +0200 @@ -522,7 +522,7 @@ switch (aEventType) { case EEventEnterKeyPressed: - case EEventItemSingleClicked: + case EEventItemDoubleClicked: { __GSLOGSTRING1( "[CGSParentContainer] Activating view plugin in index[%d]", @@ -833,37 +833,4 @@ } } -// ----------------------------------------------------------------------------- -// CGSParentContainer::GetPositionL() -// -//Get the exact position of listbox. -// ----------------------------------------------------------------------------- -// -void CGSParentContainer::GetPositionL(RArray& posArray) - { - posArray.AppendL(iListBox->CurrentItemIndex()); - posArray.AppendL(iListBox->View()->ItemOffsetInPixels()); - posArray.AppendL(iListBox->View()->TopItemIndex()); - return; - } - -// ----------------------------------------------------------------------------- -// CGSParentContainer::GetPositionL() -// -//Get the exact position of listbox. -// ----------------------------------------------------------------------------- -// -void CGSParentContainer::SetPosition(const RArray& pos, TBool aChangeMode) - { - iListBox->SetCurrentItemIndex(pos.operator[](0)); - iListBox->View()->SetItemOffsetInPixels(pos.operator[](1)); - if (aChangeMode) - { - iListBox->View()->VerticalMoveToItemL(pos.operator[](0), CListBoxView::ESingleSelection); - } - else - { - iListBox->View()->SetTopItemIndex(pos.operator[](2)); - } - } //End of File