RENDER_FLUSH_PRE/RENDER_FLUSH_POST -> RENDER_PRE/RENDER_POST
authorSung-jae Park <nicesj.park@samsung.com>
Thu, 4 Apr 2013 13:37:03 +0000 (13:37 +0000)
committerSung-jae Park <nicesj.park@samsung.com>
Thu, 4 Apr 2013 15:56:50 +0000 (15:56 +0000)
Update VERSION

Change-Id: I6b08e759b3b375eeb60a268ef5b52f5a60d03b49

packaging/liblivebox.spec
src/snapshot_window.c
src/virtual_window.c

index 1c11d8d..3ce9364 100644 (file)
@@ -1,6 +1,6 @@
 Name: liblivebox
 Summary: Library for the development of a livebox 
-Version: 0.2.0
+Version: 0.2.1
 Release: 1
 Group: HomeTF/Livebox
 License: Flora License
index ee5862e..3108487 100644 (file)
@@ -445,8 +445,8 @@ PUBLIC Evas_Object *livebox_snapshot_window_add(const char *id, int size_type)
 
        evas_object_data_set(snapshot_win, "snapshot,info", info);
 
-       evas_event_callback_add(e, EVAS_CALLBACK_RENDER_FLUSH_POST, post_render_cb, snapshot_win);
-       evas_event_callback_add(e, EVAS_CALLBACK_RENDER_FLUSH_PRE, pre_render_cb, snapshot_win);
+       evas_event_callback_add(e, EVAS_CALLBACK_RENDER_POST, post_render_cb, snapshot_win);
+       evas_event_callback_add(e, EVAS_CALLBACK_RENDER_PRE, pre_render_cb, snapshot_win);
 
        return snapshot_win;
 }
@@ -505,8 +505,8 @@ PUBLIC int livebox_snapshot_window_del(Evas_Object *snapshot_win)
                return LB_STATUS_ERROR_INVALID;
 
        e = evas_object_evas_get(snapshot_win);
-       evas_event_callback_del(e, EVAS_CALLBACK_RENDER_FLUSH_POST, post_render_cb);
-       evas_event_callback_del(e, EVAS_CALLBACK_RENDER_FLUSH_PRE, pre_render_cb);
+       evas_event_callback_del(e, EVAS_CALLBACK_RENDER_POST, post_render_cb);
+       evas_event_callback_del(e, EVAS_CALLBACK_RENDER_PRE, pre_render_cb);
 
        evas_object_del(snapshot_win);
        return LB_STATUS_SUCCESS;
index dbbf9dd..328126d 100644 (file)
@@ -239,8 +239,8 @@ PUBLIC Evas_Object *livebox_virtual_window_add(const char *id, int width, int he
                return NULL;
        }
 
-       evas_event_callback_add(e, EVAS_CALLBACK_RENDER_FLUSH_POST, post_render_cb, info);
-       evas_event_callback_add(e, EVAS_CALLBACK_RENDER_FLUSH_PRE, pre_render_cb, info);
+       evas_event_callback_add(e, EVAS_CALLBACK_RENDER_POST, post_render_cb, info);
+       evas_event_callback_add(e, EVAS_CALLBACK_RENDER_PRE, pre_render_cb, info);
 
        info->window = evas_object_rectangle_add(e);
        if (!info->window) {