Adjust code to use the slightly different Eo2 API.
authorTom Hacohen <tom@stosb.com>
Thu, 10 Apr 2014 08:49:22 +0000 (09:49 +0100)
committerTom Hacohen <tom@stosb.com>
Thu, 10 Apr 2014 08:49:22 +0000 (09:49 +0100)
commit1530aaf93270833eaaf8e3599d540f7f36362e06
tree30de3c54ba87de2626b2e952ac6ace3e279879b4
parent7a1084e7a1e34668a94d35c3934f5948cec22224
parent649381adcd20b7da7c98a48686cf407e4d21216b
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/lib/elm_cnp.c
src/lib/elm_scroller.c
src/lib/elm_video.c