aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTadao Tanikawa <tanikawa.tadao@jp.panasonic.com>2018-08-24 04:49:00 +0000
committerTadao Tanikawa <tanikawa.tadao@jp.panasonic.com>2018-08-24 11:01:15 +0000
commit32985a3558c4143900e7edd03e3d7dc9d39ce4c5 (patch)
treee5616e814a33de3c5a2728a04700ebf1e9f06e40 /src
parentb5702d25b7b5386fabd6a81a748ea2d6fe647fcd (diff)
Revert "Use appid between homescreen-service and apps"flounder_5.99.4flounder/5.99.45.99.4
This reverts commit b5702d25b7b5386fabd6a81a748ea2d6fe647fcd. Bug-AGL: SPEC-1685 Change-Id: If5b526a5a5406ff0c3e59cc4a578b977386bda14 Signed-off-by: Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com>
Diffstat (limited to 'src')
-rw-r--r--src/homescreen.c8
1 files changed, 4 insertions, 4 deletions
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__);