From: Dmytro Dragan Date: Wed, 14 Sep 2016 13:50:42 +0000 (+0300) Subject: TizenRefApp-7198 "Remove" button instead of "Delete" button X-Git-Tag: submit/tizen/20160916.133943^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f9537e5704847f4ad5968e8cb0e3d4468ed336ff;p=profile%2Fmobile%2Fapps%2Fnative%2Fmessage.git TizenRefApp-7198 "Remove" button instead of "Delete" button Change-Id: I211aad6c7738fdb2afbfdb860b7a1f52044c6cb7 Signed-off-by: Dmytro Dragan --- diff --git a/src/Viewer/Controller/src/Viewer.cpp b/src/Viewer/Controller/src/Viewer.cpp index d4bbbf89..55d371bc 100644 --- a/src/Viewer/Controller/src/Viewer.cpp +++ b/src/Viewer/Controller/src/Viewer.cpp @@ -380,7 +380,7 @@ void Viewer::onDeleteItemPressed(PopupListItem &item) Popup &popup = getApp().getPopupManager().getPopup(); popup.setAutoDismissBlockClickedFlag(true); popup.addButton(msgt("IDS_MSG_BUTTON_CANCEL_ABB"), Popup::CancelButtonId, POPUP_BUTTON_CB(Viewer, onCancelButtonClicked), this); - popup.addButton(msgt("IDS_MSG_BUTTON_REMOVE_ABB"), Popup::OkButtonId, POPUP_BUTTON_CB(Viewer, onDeleteButtonClicked), this); + popup.addButton(msgt("IDS_MSG_BUTTON_DELETE_ABB4"), Popup::OkButtonId, POPUP_BUTTON_CB(Viewer, onDeleteButtonClicked), this); popup.setTitle(msgt("IDS_MSG_HEADER_DELETE")); popup.setContent(msgt("IDS_MSG_POP_1_MESSAGE_WILL_BE_DELETED")); popup.show();