tasn pushed a commit to branch master. http://git.enlightenment.org/tools/expedite.git/commit/?id=4848c66d47ef258f18963aeb9dbbd865d9f3e04e
commit 4848c66d47ef258f18963aeb9dbbd865d9f3e04e Merge: 4e5cac2 ea38776 Author: Tom Hacohen <[email protected]> Date: Thu Apr 10 09:54:23 2014 +0100 Adjust code to use the slightly different Eo2 API. With Eo2 you can return values directly without the need to use a pointer (use the C return). For example: eo_do(obj, elm_object_text_get(&text)); becomes: eo_do(obj, text = elm_object_text_get()); @feature src/bin/image_data_argb.c | 4 ++-- src/bin/image_data_argb_alpha.c | 4 ++-- src/bin/main.c | 4 +--- src/bin/proxy_image.c | 2 +- src/bin/proxy_text_fixed.c | 2 +- src/bin/proxy_text_random.c | 2 +- src/bin/textblock_text_append.c | 4 ++-- src/bin/ui.c | 16 ++++------------ 8 files changed, 14 insertions(+), 24 deletions(-) --
