From: Kyuho Jo Date: Fri, 6 Mar 2015 10:45:40 +0000 (+0900) Subject: Replace elm_object_part_text_set with elm_object_text_set. X-Git-Tag: submit/tizen_mobile/20150527.071719^2~16 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=00e2ba060b6dcdba1efa7b0e97a848df4e7ce9f1;p=platform%2Fcore%2Fapi%2Fnotification.git Replace elm_object_part_text_set with elm_object_text_set. Change-Id: Ie9f572335b610458253f77f98b24a4e997ac5c60 Signed-off-by: Kyuho Jo --- diff --git a/packaging/notification.spec b/packaging/notification.spec index f5712fe..7a4706c 100755 --- a/packaging/notification.spec +++ b/packaging/notification.spec @@ -1,6 +1,6 @@ Name: notification Summary: notification library -Version: 0.2.24 +Version: 0.2.25 Release: 1 Group: TBD License: Apache diff --git a/src/notification_noti.c b/src/notification_noti.c index 8423ba5..0fe85cf 100755 --- a/src/notification_noti.c +++ b/src/notification_noti.c @@ -1875,7 +1875,7 @@ int _post_toast_message(char *message) elm_object_style_set(toast_popup, "toast"); evas_object_size_hint_weight_set(toast_popup, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); - elm_object_part_text_set(toast_popup,"elm.text", message); + elm_object_text_set(toast_popup,message); if (eina_list_count(toast_list) != 1) { elm_popup_timeout_set(toast_popup, 1.0);