diff -r b46a585f6909 -r efe85016a067 phonebookui/pbkcommonui/src/cntcollectionview.cpp --- a/phonebookui/pbkcommonui/src/cntcollectionview.cpp Fri Jun 11 13:29:23 2010 +0300 +++ b/phonebookui/pbkcommonui/src/cntcollectionview.cpp Wed Jun 23 18:02:44 2010 +0300 @@ -300,6 +300,9 @@ HbInputDialog *popup = new HbInputDialog(); popup->setAttribute(Qt::WA_DeleteOnClose, true); + HbLineEdit *lineEdit = popup->lineEdit(); + lineEdit->setInputMethodHints(Qt::ImhNoPredictiveText); + popup->setPromptText(hbTrId("txt_phob_title_new_group_name")); popup->clearActions(); HbAction* primaryAction = new HbAction(hbTrId("txt_phob_button_create")); @@ -336,7 +339,7 @@ // Select some contact(s) to add to the group QString groupNameCreated(mHandledContact->displayLabel()); - mFetchView->setDetails(HbParameterLengthLimiter(hbTrId("txt_phob_subtitle_1_group")).arg(groupNameCreated), + mFetchView->setDetails(HbParameterLengthLimiter(hbTrId("txt_phob_title_members_of_1_group")).arg(groupNameCreated), hbTrId("txt_common_button_save")); mFetchView->displayContacts(CntFetchContacts::popup, HbAbstractItemView::MultiSelection, @@ -388,7 +391,7 @@ HbMessageBox::question(hbTrId("txt_phob_dialog_only_group_will_be_removed_contac") , this, SLOT(handleDeleteGroup(HbAction*)), - hbTrId("txt_phob_button_delete"), hbTrId("txt_common_button_cancel"), headingLabel); + hbTrId("txt_common_button_delete"), hbTrId("txt_common_button_cancel"), headingLabel); } void CntCollectionView::handleDeleteGroup(HbAction* action)