Remove the build warning 62/107862/2 accepted/tizen/common/20170207.061954 accepted/tizen/ivi/20170207.091957 accepted/tizen/mobile/20170207.091523 accepted/tizen/tv/20170207.091707 accepted/tizen/wearable/20170207.091841 submit/tizen/20170207.045138
authorSeonah Moon <seonah1.moon@samsung.com>
Fri, 30 Dec 2016 08:11:35 +0000 (17:11 +0900)
committerSeonah Moon <seonah1.moon@samsung.com>
Fri, 30 Dec 2016 08:14:27 +0000 (17:14 +0900)
Change-Id: Ib6441eb2b14079d8131fc4d7d84277a0bf8bcbc7
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
packaging/wifi-efl-ug.spec
sources/libraries/Common/common_ip_info.c

index fb8473a..5c4ed0a 100644 (file)
@@ -1,6 +1,6 @@
 Name:          wifi-efl-ug
 Summary:       Wi-Fi UI Gadget for TIZEN
-Version:       1.0.227
+Version:       1.0.228
 Release:       1
 Group:         Applications/Network
 License:       Flora-1.1
index cf2db19..0d3cb49 100755 (executable)
@@ -89,23 +89,6 @@ static void _ip_info_detail_description_del(void *data, Evas_Object *obj)
        __COMMON_FUNC_EXIT__;
 }
 
-static char *_ip_info_detail_description_text_get(void *data,
-               Evas_Object *obj, const char *part)
-{
-       __COMMON_FUNC_ENTER__;
-       retvm_if(NULL == data || NULL == part, NULL);
-
-       _view_detail_description_data_t* det =
-                       (_view_detail_description_data_t*) data;
-
-       if (0 == strncmp("elm.text.sub", part, strlen(part))) {
-               return g_strdup(dgettext(PACKAGE, det->title));
-       }
-
-       __COMMON_FUNC_EXIT__;
-       return NULL;
-}
-
 static Evas_Object *_ip_info_detail_description_content_get(void *data,
                Evas_Object *obj, const char *part)
 {
@@ -117,7 +100,6 @@ static Evas_Object *_ip_info_detail_description_content_get(void *data,
 
        Evas_Object *layout = NULL;
        Evas_Object *title_label = NULL;
-       Evas_Object *description_label = NULL;
        char buf[MAX_LABEL_LENGTH] = {0, };
 
        layout = elm_layout_add(obj);
@@ -374,20 +356,6 @@ static void _ip_info_entry_unfocused_cb(void *data, Evas_Object *obj, void *even
        elm_object_item_signal_emit(entry_info->item, "elm,state,rename,show", "");
 }
 
-static char *_ip_info_entry_item_text_get(void *data, Evas_Object *obj, const char *part)
-{
-       common_utils_entry_info_t *entry_info = (common_utils_entry_info_t *)data;
-       if (!entry_info) {
-               return NULL;
-       }
-
-       if (!g_strcmp0(part, "elm.text.sub")) {
-               return g_strdup(dgettext(PACKAGE, entry_info->title_txt));
-       }
-
-       return NULL;
-}
-
 static void _ip_info_entry_del_callbacks(Elm_Object_Item *item)
 {
        if (item == NULL)