ctxpopup: remove warning message 55/118955/2 accepted/tizen/common/20170315.125044 accepted/tizen/ivi/20170315.222102 accepted/tizen/mobile/20170315.221944 accepted/tizen/tv/20170315.222009 accepted/tizen/unified/20170316.015315 accepted/tizen/wearable/20170315.222035 submit/tizen/20170315.094151
authorShinwoo Kim <cinoo.kim@samsung.com>
Wed, 15 Mar 2017 01:49:19 +0000 (10:49 +0900)
committerShinwoo Kim <cinoo.kim@samsung.com>
Wed, 15 Mar 2017 04:09:56 +0000 (21:09 -0700)
the elm_atspi_accessible_name_get returns const char* type value.

Change-Id: I64e1d6185eda42d472a03f25db58de9efc375b95

src/mobile_lib/elc_ctxpopup.c

index 48eae2b..a86733b 100644 (file)
@@ -2320,7 +2320,7 @@ _elm_ctxpopup_elm_interface_atspi_accessible_name_get(Eo *obj, Elm_Ctxpopup_Data
    char *accessible_name = NULL;
    const char *style = elm_widget_style_get(obj);
 
-   eo_do_super(obj, ELM_CTXPOPUP_CLASS, accessible_name = elm_interface_atspi_accessible_name_get());
+   eo_do_super(obj, ELM_CTXPOPUP_CLASS, accessible_name = (char *)elm_interface_atspi_accessible_name_get());
    if (accessible_name) return accessible_name;
 
    ELM_WIDGET_DATA_GET_OR_RETURN(obj, wd, NULL);