[elm_genlist] Setter isn't const. (from SVN 53922)
authorDaniel Juyung Seo <juyung.seo@samsung.com>
Thu, 28 Oct 2010 00:09:45 +0000 (09:09 +0900)
committerDaniel Juyung Seo <juyung.seo@samsung.com>
Thu, 28 Oct 2010 00:09:45 +0000 (09:09 +0900)
src/lib/Elementary.h.in
src/lib/elm_genlist.c

index 2e12549..6f8b864 100644 (file)
@@ -1257,7 +1257,7 @@ extern "C" {
    EAPI Eina_Bool         elm_genlist_homogeneous_get(const Evas_Object *obj);
    EAPI void              elm_genlist_block_count_set(Evas_Object *obj, int n);
    EAPI int               elm_genlist_block_count_get(const Evas_Object *obj);
-   EAPI void              elm_genlist_longpress_timeout_set(const Evas_Object *obj, double timeout);
+   EAPI void              elm_genlist_longpress_timeout_set(Evas_Object *obj, double timeout);
    EAPI double            elm_genlist_longpress_timeout_get(const Evas_Object *obj);
    EAPI void              elm_genlist_effect_set(const Evas_Object *obj, Eina_Bool emode);
    EAPI void              elm_genlist_pinch_zoom_set(Evas_Object *obj, Eina_Bool emode);
index c52647c..e9d7d47 100644 (file)
@@ -5360,7 +5360,7 @@ elm_genlist_item_rename_mode_set(Elm_Genlist_Item *it, int emode)
  * @ingroup Genlist
  */
 EAPI void
-elm_genlist_longpress_timeout_set(const Evas_Object *obj, double timeout)
+elm_genlist_longpress_timeout_set(Evas_Object *obj, double timeout)
 {
    ELM_CHECK_WIDTYPE(obj, widtype);
    Widget_Data *wd = elm_widget_data_get(obj);