use appid instead of appname in "tap_shortcut"
[apps/agl-service-homescreen.git] / src / hs-client.cpp
index c683c66..7da2cda 100644 (file)
@@ -56,20 +56,20 @@ HS_Client::~HS_Client()
  * push tap_shortcut event
  *
  * #### Parameters
- *  - appname: app's name.
+ *  - appid: app's id.
  *
  * #### Return
  * result
  *
  */
-int HS_Client::tap_shortcut(const char* appname)
+int HS_Client::tap_shortcut(const char* appid)
 {
     if(!checkEvent(__FUNCTION__))
         return 0;
 
-    HMI_NOTICE("homescreen-service","%s application_name = %s.", __FUNCTION__, appname);
+    HMI_NOTICE("homescreen-service","%s application_id = %s.", __FUNCTION__, appid);
     struct json_object* push_obj = json_object_new_object();
-    hs_add_object_to_json_object_str( push_obj, 4, _application_name, appname,
+    hs_add_object_to_json_object_str( push_obj, 4, _application_id, appid,
     _type, __FUNCTION__);
     afb_event_push(my_event, push_obj);
     return 0;