From: chleun.moon Date: Fri, 20 May 2016 06:10:11 +0000 (+0900) Subject: Fixed build warning X-Git-Tag: accepted/tizen/common/20160523.143908^0 X-Git-Url: http://review.tizen.org/git/?p=apps%2Fnative%2Fug-mobile-ap.git;a=commitdiff_plain;h=9efaa2029701b307de1dc9e29855e839869726ec Fixed build warning Change-Id: I64f8e96c57d17ec319e73d71feb4d4980f2a06f7 Signed-off-by: cheoleun --- diff --git a/src/mh_view_wifi_setup.c b/src/mh_view_wifi_setup.c index 93caa7a..37c46ec 100755 --- a/src/mh_view_wifi_setup.c +++ b/src/mh_view_wifi_setup.c @@ -373,7 +373,7 @@ static void __pw_entry_activated_cb(void *data, Evas_Object *obj, void *event_in static void __pw_entry_focused_cb(void *data, Evas_Object *obj, void *event_info) { __MOBILE_AP_FUNC_ENTER__; - evas_object_event_callback_del(obj, EVAS_CALLBACK_SHOW, __pw_entry_focused_cb); + evas_object_smart_callback_del(obj, "focused", __pw_entry_focused_cb); elm_object_focus_set(obj, EINA_TRUE); elm_entry_cursor_end_set(obj); @@ -531,25 +531,6 @@ static Evas_Object *__get_pw_entry(void *data, Evas_Object *parent) return st->pw_entry; } -static char *__gl_pw_text_get(void *data, Evas_Object *obj, const char *part) -{ - __MOBILE_AP_FUNC_ENTER__; - char buf[MH_LABEL_LENGTH_MAX] = {0, }; - - if (data == NULL || obj == NULL || part == NULL) { - ERR("Invalid param\n"); - return NULL; - } - - if (!strcmp("elm.text.main", part)) { - snprintf(buf, MH_LABEL_LENGTH_MAX, "%s", STR_PASSWORD); - return strdup(buf); - } - - __MOBILE_AP_FUNC_EXIT__; - return NULL; -} - static Evas_Object *__gl_pw_content_get(void *data, Evas_Object *obj, const char *part) { __MOBILE_AP_FUNC_ENTER__; @@ -946,8 +927,6 @@ static void __select_passphrase_item(void *data, Evas_Object *obj, void *event_i return; } - Elm_Object_Item *item = (Elm_Object_Item *)event_info; - Evas_Object *layout = NULL; mh_appdata_t *ad = (mh_appdata_t *)data; mh_wifi_setting_view_t *st = &ad->setup;