From: Semun Lee Date: Sat, 9 Jul 2016 05:39:04 +0000 (+0900) Subject: Don't remove key strings for localization X-Git-Tag: accepted/tizen/common/20160711.165742^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4e96eb8a4e6f8b0affff7bff75f32aebc5450111;p=platform%2Fcore%2Fapi%2Fnotification.git Don't remove key strings for localization notification viewer (quickpanel) may use the keys for localizing when the language setting is changed in runtime. Change-Id: Ifbf7299a3d27b0e06ca20c99feb00cd2dbacd6e2 Signed-off-by: Semun Lee --- diff --git a/src/notification_internal.c b/src/notification_internal.c index 28d6fb8..26cbbc5 100755 --- a/src/notification_internal.c +++ b/src/notification_internal.c @@ -398,11 +398,6 @@ EXPORT_API int notification_translate_localized_text(notification_h noti) } } - if (noti->b_key) { - bundle_free(noti->b_key); - noti->b_key = NULL; - } - return noti_err; }