X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fhomescreen.c;h=f1a8fcd233489c210bc4712f47bddd76c52f4e5b;hb=32985a3558c4143900e7edd03e3d7dc9d39ce4c5;hp=ee4b9b5fc50581f86f82ccfb9127320ebb8e65b3;hpb=b5702d25b7b5386fabd6a81a748ea2d6fe647fcd;p=apps%2Fagl-service-homescreen.git diff --git a/src/homescreen.c b/src/homescreen.c index ee4b9b5..f1a8fcd 100644 --- a/src/homescreen.c +++ b/src/homescreen.c @@ -47,7 +47,7 @@ static struct afb_event ev_reserved; static const char _error[] = "error"; -static const char _application_id[] = "application_id"; +static const char _application_name[] = "application_name"; static const char _display_message[] = "display_message"; static const char _reply_message[] = "reply_message"; @@ -69,7 +69,7 @@ static void pingSample(struct afb_req request) * * #### Parameters * Request key - * - application_id : application id + * - application_name : application name * * #### Return * Nothing @@ -80,14 +80,14 @@ static void tap_shortcut (struct afb_req request) HMI_NOTICE("homescreen-service","called."); int ret = 0; - const char* value = afb_req_value(request, _application_id); + const char* value = afb_req_value(request, _application_name); if (value) { HMI_NOTICE("homescreen-service","request params = %s.", value); struct json_object* push_obj = json_object_new_object(); hs_add_object_to_json_object_str( push_obj, 2, - _application_id, value); + _application_name, value); afb_event_push(ev_tap_shortcut, push_obj); } else { afb_req_fail_f(request, "failed", "called %s, Unknown palameter", __FUNCTION__);