[Migration] Fixed build error.
authorDaniel Juyung Seo <juyung.seo@samsung.com>
Fri, 8 Jul 2011 12:37:43 +0000 (21:37 +0900)
committerDaniel Juyung Seo <juyung.seo@samsung.com>
Fri, 8 Jul 2011 12:37:43 +0000 (21:37 +0900)
src/lib/elm_cnp_helper.c
src/lib/elm_slider.c
src/lib/elm_table.c

index c9644ce..5fd9ceb 100644 (file)
@@ -2654,7 +2654,7 @@ elm_cnp_tempfile_create(int size)
         return info;
      }
 
-   eina_mmap_safety_enabled_set(EINA_TRUE);
+   //eina_mmap_safety_enabled_set(EINA_TRUE); // NOTE: Temporary comment
 
    info->map = mmap(NULL, size, PROT_READ|PROT_WRITE, MAP_SHARED, info->fd, 0);
    if (info->map == MAP_FAILED)
index ad5d953..c8e5f0a 100644 (file)
@@ -67,9 +67,6 @@ struct _Widget_Data
    Eina_Bool inverted : 1;
    Eina_Bool indicator_show : 1;
    int feed_cnt;
-   double val, val_min, val_max;
-   Ecore_Timer *delay;
-   Evas_Coord size;
 };
 
 #define ELM_SLIDER_INVERTED_FACTOR (-1.0)
index 5ead6a0..ec02526 100644 (file)
@@ -330,7 +330,7 @@ elm_table_pack_get(Evas_Object *subobj, int *x, int *y, int *w, int *h)
    ELM_CHECK_WIDTYPE(obj, widtype);
    Widget_Data *wd = elm_widget_data_get(obj);
    if (!wd) return;
-   //evas_object_table_pack_get(wd->tbl, subobj, &ix, &iy, &iw, &ih); // MIGRATION: TEMP
+   evas_object_table_pack_get(wd->tbl, subobj, &ix, &iy, &iw, &ih);
    if (x) *x = ix;
    if (y) *y = iy;
    if (w) *w = iw;