[Genlist] Removed wrong 'const' from API declaration.
authorDaniel Juyung Seo <juyung.seo@samsung.com>
Thu, 10 Mar 2011 02:46:03 +0000 (11:46 +0900)
committerDaniel Juyung Seo <juyung.seo@samsung.com>
Thu, 10 Mar 2011 02:46:03 +0000 (11:46 +0900)
src/lib/Elementary.h.in
src/lib/elm_genlist.c

index f4f095d..1d7dde3 100644 (file)
@@ -1883,7 +1883,7 @@ extern "C" {
    EAPI void               elm_genlist_edit_selected_items_del(Evas_Object *obj);
    EAPI Eina_List         *elm_genlist_edit_selected_items_get(const Evas_Object *obj);
    EAPI void               elm_genlist_edit_item_selected_set(Elm_Genlist_Item *it, Eina_Bool selected) EINA_ARG_NONNULL(1);
-   EAPI const Eina_Bool    elm_genlist_edit_item_selected_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);;
+   EAPI Eina_Bool          elm_genlist_edit_item_selected_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
    EAPI Evas_Object       *elm_genlist_item_rename_mode_set(Elm_Genlist_Item *it, int emode);
    EAPI void               elm_genlist_item_move_after(Elm_Genlist_Item *it, Elm_Genlist_Item *after );
    EAPI void               elm_genlist_item_move_before(Elm_Genlist_Item *it, Elm_Genlist_Item *before);
index 40b20ee..4fc29ae 100644 (file)
@@ -6472,7 +6472,7 @@ elm_genlist_edit_item_selected_set(Elm_Genlist_Item *it,
 }
 
 // TODO : add comment                              
-EAPI const Eina_Bool
+EAPI Eina_Bool
 elm_genlist_edit_item_selected_get(const Elm_Genlist_Item *it)
 {
    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);