From: Jiwoong Im Date: Fri, 6 Nov 2015 06:08:04 +0000 (+0900) Subject: replace service to app_control X-Git-Tag: accepted/tizen/mobile/20151109.233854^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=14ab6ee50063621b7cd1e17fdc51570225c5c21a;p=apps%2Fcore%2Fpreloaded%2Fug-setting-homescreen-efl.git replace service to app_control Change-Id: Icc9eb52e3f5f5f4eb321d52854d299894c5dcf6b Signed-off-by: Jiwoong Im --- diff --git a/homescreen-setting-efl.c b/homescreen-setting-efl.c index f26ec3c..18800a7 100755 --- a/homescreen-setting-efl.c +++ b/homescreen-setting-efl.c @@ -109,7 +109,7 @@ static Evas_Object *create_fullview(Evas_Object *parent, struct ug_data *ugd) return ugd->base; } -static void *on_create(ui_gadget_h ug, enum ug_mode mode, service_h service, void *priv) +static void *on_create(ui_gadget_h ug, enum ug_mode mode, app_control_h app_control, void *priv) { HOMESET_DBG(""); Evas_Object *parent; @@ -133,21 +133,21 @@ static void *on_create(ui_gadget_h ug, enum ug_mode mode, service_h service, voi return ugd->base; } -static void on_start(ui_gadget_h ug, service_h service, void *priv) +static void on_start(ui_gadget_h ug, app_control_h app_control, void *priv) { } -static void on_pause(ui_gadget_h ug, service_h service, void *priv) +static void on_pause(ui_gadget_h ug, app_control_h app_control, void *priv) { } -static void on_resume(ui_gadget_h ug, service_h service, void *priv) +static void on_resume(ui_gadget_h ug, app_control_h app_control, void *priv) { } -static void on_destroy(ui_gadget_h ug, service_h service, void *priv) +static void on_destroy(ui_gadget_h ug, app_control_h app_control, void *priv) { HOMESET_DBG(""); struct ug_data *ugd; @@ -160,11 +160,11 @@ static void on_destroy(ui_gadget_h ug, service_h service, void *priv) ugd->base = NULL; } -static void on_message(ui_gadget_h ug, service_h msg, service_h service, void *priv) +static void on_message(ui_gadget_h ug, app_control_h msg, app_control_h app_control, void *priv) { } -static void on_event(ui_gadget_h ug, enum ug_event event, service_h service, void *priv) +static void on_event(ui_gadget_h ug, enum ug_event event, app_control_h app_control, void *priv) { switch (event) {