Changed Bundle API's for Tizen 3.0 09/54409/2
authorbhutani.92 <bhutani.92@samsung.com>
Tue, 15 Dec 2015 06:49:17 +0000 (12:19 +0530)
committerbhutani.92 <bhutani.92@samsung.com>
Tue, 15 Dec 2015 07:02:02 +0000 (12:32 +0530)
Change-Id: I0ef002e42a3aa14d92b07c2dd745fcce0a943e04
Signed-off-by: bhutani.92 <bhutani.92@samsung.com>
src/mp-main.c
widget/src/mp-widget-create.c

index 573e7c3..4d8fb3a 100755 (executable)
@@ -119,7 +119,6 @@ static int __is_relaunch = 0;
 #endif
 
 static bool _mp_main_init(struct appdata *ad);
-//char *bundle_get_val(bundle *, char *);
 int app_control_to_bundle(app_control_h, bundle **);
 static void _mp_main_win_visibility_withdrawn_cb(void *data, Evas_Object *obj, void *event);
 static void _mp_main_win_visibility_normal_cb(void *data, Evas_Object *obj, void *event);
@@ -448,7 +447,8 @@ static bool _parse_widget_event(bundle *b, bool *activate_window)
        struct appdata *ad = mp_util_get_appdata();
        MP_CHECK_FALSE(ad);
 
-       const char *value = bundle_get_val(b, MP_LB_EVENT_KEY);
+       char *value = NULL;
+       bundle_get_str(b, MP_LB_EVENT_KEY, &value);
        if (value && strlen(value) > 0) {
                *activate_window = false;
                EVENT_TRACE("event: %s", value);
@@ -486,7 +486,8 @@ static bool _parse_widget_event(bundle *b, bool *activate_window)
                return true;
        }
 
-       value = bundle_get_val(b, MP_NOWPLAYING_LIST_INDEX);
+       value = NULL;
+       bundle_get_str(b, MP_NOWPLAYING_LIST_INDEX, &value);
        if (value && strlen(value) > 0) {
                EVENT_TRACE("index: %s", value);
 
index c51d9c7..18ea1ac 100644 (file)
@@ -368,7 +368,7 @@ static int message_port_send_event_message(const char *event)
                ERROR_TRACE("Unable to add data to bundle");
                return -1;
        }
-       bundle_add(b, MP_LB_EVENT_KEY, event);
+       bundle_add_str(b, MP_LB_EVENT_KEY, event);
        ret = message_port_send_message(APP_ID, MP_MESSAGE_PORT_LIVEBOX, b);
        if (ret != MESSAGE_PORT_ERROR_NONE) {
                ERROR_TRACE("Message remote port error: %d", ret);