[src/lib/elm_genlist.c] Deprecated comment added.
authorDaniel Juyung Seo <juyung.seo@samsung.com>
Thu, 30 Sep 2010 02:30:14 +0000 (11:30 +0900)
committerDaniel Juyung Seo <juyung.seo@samsung.com>
Thu, 30 Sep 2010 02:30:14 +0000 (11:30 +0900)
[src/lib/Elementary.h.in] Deprecated comment added.

debian/changelog
src/lib/Elementary.h.in
src/lib/elm_genlist.c

index 052e3d5..0bc59c8 100644 (file)
@@ -1,3 +1,11 @@
+elementary (1.0.0+svn.51480slp2+build21) unstable; urgency=low
+
+  * Packaging to enable scale factor.
+  * Git: 165.213.180.234:/git/slp/pkgs/elementary
+  * Tag: elementary_1.0.0+svn.51480slp2+build21
+
+ -- Juyung Seo <juyung.seo@samsung.com>  Thu, 30 Sep 2010 11:24:14 +0900
+
 elementary (1.0.0+svn.51480slp2+build20) unstable; urgency=low
 
   * Genlist fix for calllog.
index 9ac6f06..231ac1c 100644 (file)
@@ -1247,7 +1247,7 @@ extern "C" {
    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);
-   EAPI void              elm_genlist_queue_exception_set(const Evas_Object *obj, Eina_Bool emode);
+   EINA_DEPRECATED EAPI void              elm_genlist_queue_exception_set(const Evas_Object *obj, Eina_Bool emode);
 
 
    /* operations to add items */
index 953238c..99e3fd3 100755 (executable)
@@ -6029,5 +6029,10 @@ elm_genlist_queue_exception_set(const Evas_Object *obj, Eina_Bool emode)
    Widget_Data *wd = elm_widget_data_get(obj);
    if (!wd) return;
    wd->queue_exception = emode;
+
+   fprintf(stderr, "=================> Caution!!! <========================\n");
+   fprintf(stderr, "==> elm_genlist_queue_exception_set() is for demo. <===\n");
+   fprintf(stderr, "==> Do not use this API                             <==\n");
+   fprintf(stderr, "=======================================================\n");
 }