--- a/clientprovisioning/cpqtsp/src/CpMessage.cpp Fri Sep 17 08:27:39 2010 +0300
+++ b/clientprovisioning/cpqtsp/src/CpMessage.cpp Mon Oct 04 00:06:35 2010 +0300
@@ -64,6 +64,11 @@
HbMessageBox *box = new HbMessageBox(hbTrId("txt_device_update_info_settings_are_already_saved"),HbMessageBox::MessageTypeQuestion);
box->setAttribute(Qt::WA_DeleteOnClose);
box->setTimeout(HbPopup::NoTimeout);
+ box->clearActions();
+ HbAction * action1 = new HbAction(hbTrId("txt_common_button_save"));
+ HbAction * action2 = new HbAction(hbTrId("txt_common_button_cancel"));
+ box->addAction(action1);
+ box->addAction(action2);
box->open(this,SLOT(saveSettingDialogClosed(HbAction*)));
}