From 4c1b181dd966aafeebf99f08e7cf1bc4bf3a8d84 Mon Sep 17 00:00:00 2001 From: Mykola Alieksieiev Date: Fri, 8 Apr 2016 15:27:55 +0300 Subject: [PATCH] TSAM-2157 Name of Delete button display wrong - FIXED Change-Id: I05d99767cf9d3f7ea73859ef79f99d3579ec188f Signed-off-by: Mykola Alieksieiev --- src/Conversation/ConvList/Controller/src/ConvListItem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Conversation/ConvList/Controller/src/ConvListItem.cpp b/src/Conversation/ConvList/Controller/src/ConvListItem.cpp index beb0c01..02ac7e0 100644 --- a/src/Conversation/ConvList/Controller/src/ConvListItem.cpp +++ b/src/Conversation/ConvList/Controller/src/ConvListItem.cpp @@ -274,7 +274,7 @@ void ConvListItem::onDeleteItemPressed(ContextPopupItem &item) Popup &popup = m_App.getPopupManager().getPopup(); popup.addEventCb(EVAS_CALLBACK_DEL, EVAS_EVENT_CALLBACK(ConvListItem, onPopupDel), this); popup.addButton(msgt("IDS_MSG_BUTTON_CANCEL_ABB"), Popup::CancelButtonId, POPUP_BUTTON_CB(ConvListItem, onCancelButtonClicked), this); - popup.addButton(msgt("IDS_MSG_BUTTON_REMOVE_ABB"), Popup::OkButtonId, POPUP_BUTTON_CB(ConvListItem, onDeleteButtonClicked), this); + popup.addButton(msgt("IDS_MSG_BUTTON_DELETE_ABB4"), Popup::OkButtonId, POPUP_BUTTON_CB(ConvListItem, onDeleteButtonClicked), this); popup.setTitle(msgt("IDS_MSG_HEADER_DELETE")); popup.setContent(msgt("IDS_MSG_POP_1_MESSAGE_WILL_BE_DELETED")); popup.show(); -- 2.7.4