Guilherme Iscaro [Thu, 29 Mar 2012 17:38:58 +0000 (17:38 +0000)]
Added note tag at Edje.h and all tutorials revised
Patch by: Guilherme Iscaro <iscaro@profusion.mobi>
SVN revision: 69761
Guilherme Iscaro [Thu, 29 Mar 2012 17:38:55 +0000 (17:38 +0000)]
Adding corrections for the examples, because some of them were not showing.
Patch by: Guilherme Iscaro <iscaro@profusion.mobi>
SVN revision: 69760
Guilherme Iscaro [Thu, 29 Mar 2012 17:38:53 +0000 (17:38 +0000)]
Adding compiling instructions for the tutorials
and removing some whitespaces from examples.dox.
Patch by: Guilherme Iscaro <iscaro@profusion.mobi>
SVN revision: 69759
Guilherme Iscaro [Thu, 29 Mar 2012 17:38:49 +0000 (17:38 +0000)]
Adding a note saying where the example files are located in the introduction section
Patch by: Guilherme Iscaro <iscaro@profusion.mobi>
SVN revision: 69758
Jérôme Pinot [Thu, 29 Mar 2012 13:51:05 +0000 (13:51 +0000)]
Patch by: Jérôme Pinot <ngc891@gmail.com>
There is a reference to evas-load-error-str.c in
the evas_load_error_str doc, but this file doesn't exist
anymore so I made the doc link to evas-images.c which use
several times this function.
SVN revision: 69754
Cedric BAIL [Thu, 29 Mar 2012 13:48:53 +0000 (13:48 +0000)]
eet: always set size.
SVN revision: 69753
Cedric BAIL [Thu, 29 Mar 2012 13:48:09 +0000 (13:48 +0000)]
eet: remove shadow warning.
SVN revision: 69752
David Walter Seikel [Thu, 29 Mar 2012 13:11:44 +0000 (13:11 +0000)]
I gote the version wrong, even after asking. lol
SVN revision: 69751
Jérôme Pinot [Thu, 29 Mar 2012 11:41:22 +0000 (11:41 +0000)]
From: Jérôme Pinot <ngc891@gmail.com>
Subject: [E-devel] [patch] evas doxygen doc (1)
There are a lot of small things to fix in the evas doc. Here is a first
batch. Fixes are trivial and obvious. Just a question about the first
hunk, I removed the <tdb> that replaced valid email for companies
because it makes doxygen complain about the unknown tag and, well, it
doesn't give any information either. Was there an explanation about
adding this ?
Joined is the patch along with the doc build log diff.
SVN revision: 69749
Jérôme Pinot [Thu, 29 Mar 2012 11:38:01 +0000 (11:38 +0000)]
From: Jérôme Pinot <ngc891@gmail.com>
Subject: [E-devel] [patch] eet doxygen doc
Here is a small fix for eet doxygen doc, escaping a # that shutdown a
build warning.
SVN revision: 69747
Jérôme Pinot [Thu, 29 Mar 2012 11:35:34 +0000 (11:35 +0000)]
From: Jérôme Pinot <ngc891@gmail.com>
Subject: [E-devel] [patch] eina doxygen doc
Here is a patch that fix several links in the eina doxygen doc. Most of
the problems come from unescaped special characters.
SVN revision: 69746
David Walter Seikel [Thu, 29 Mar 2012 11:18:52 +0000 (11:18 +0000)]
Added a new macro for adding variable arrays of basic types.
EET_DATA_DESCRIPTOR_ADD_BASIC_VAR_ARRAY
SVN revision: 69745
Carsten Haitzler [Thu, 29 Mar 2012 11:05:59 +0000 (11:05 +0000)]
try fix to refactor of ecore where thread_count went negative as it
was --'d when a no_queue thread finished too.
SVN revision: 69741
Jihoon Kim [Thu, 29 Mar 2012 11:04:06 +0000 (11:04 +0000)]
evas doxyfile deprecated values from Jérôme Pinot
The doxyfile of evas contains some variables that have been deprecated a
long time ago (6 years for some of them). Here is a patch that fix this
build warning:
make -C doc doc
make[1]: Entering directory `/tmp/evas/doc'
rm -rf html/ latex/ man/ xml/ evas-1.2.0-alpha-doc.tar*
doxygen
warning: Tag `DETAILS_AT_TOP' at line 44 of file Doxyfile has become obsolete.
To avoid this warning please update your configuration file using "doxygen -u"
warning: Tag `MAX_DOT_GRAPH_WIDTH' at line 135 of file Doxyfile has become
obsolete.
To avoid this warning please update your configuration file using "doxygen -u"
warning: Tag `MAX_DOT_GRAPH_HEIGHT' at line 136 of file Doxyfile has become
obsolete.
To avoid this warning please update your configuration file using "doxygen -u"
As suggested, it would be good to run again doxygen -u Doxyfile.in
SVN revision: 69740
이병우 [Thu, 29 Mar 2012 10:36:23 +0000 (10:36 +0000)]
From: 이병우 <bw80.lee@samsung.com>
I found a bug in ecore main loop while debuging cpu 100% issue on RSS
application.
1. [RSS] RSS application register two io watch callbacks(for G_IO_IN,
G_IO_OUT seperately) for a GIOChannel with g_io_add_watch().
2. [ecore] In _ecore_glib_context_query() function, g_main_context_query()
returns a fd list, and it has 2 fd items for the GIOChannel (channel
id = 20).
itr[0] (16, 1, 0)
itr[1] (15, 1, 0)
itr[2] (20, 1, 0) (G_IO_IN, 0)
itr[3] (20, 4, 0) (G_IO_OUT, 0)
itr[4] (18, 1, 0)
3. [ecore] In _ecore_glib_context_poll_from() function, create read, write,
exception fd list according to the events flags of each fd item.
[6 15 16 18 20], [20], []
4. [ecore] in _ecore_glib_select__locked() function, get active fd number from
select() call
select(21, [6 15 16 18 20], [20], [], NULL) = 1 (out [20])
5. [ecore] In _ecore_glib_context_poll_to() function, there is a bug on
setting revents flag.
(because of incorrect condition check - currently, the logic of the
function cannot handle this case)
itr[0] (16, 1, 0)
itr[1] (15, 1, 0)
itr[2] (20, 1, 4) (set incorrectly)
itr[3] (20, 4, 0) => this should be set as (20, 4, 4)!!!!
itr[4] (18, 1, 0)
6. [ecore] In _ecore_glib_select__locked(), g_main_context_check() function
returns false because of the above bug, so g_main_context_dispatch()
function will not be called.
>> After this, the 2~6 flow is executed repeatedly on ecore main loop
(because 20 out is still active fd) and this makes cpu 100% problem.
SVN revision: 69739
Carsten Haitzler [Thu, 29 Mar 2012 09:25:48 +0000 (09:25 +0000)]
remvoe unused func too
SVN revision: 69733
Jihoon Kim [Thu, 29 Mar 2012 09:02:22 +0000 (09:02 +0000)]
ecore_x: fix some typos
SVN revision: 69729
Carsten Haitzler [Thu, 29 Mar 2012 08:56:10 +0000 (08:56 +0000)]
and kill warnings (-Wshadow) in ecore_getopt. pointed out that
ecore_getopt_help() cant be called from a thread either in the process.
SVN revision: 69728
Carsten Haitzler [Thu, 29 Mar 2012 08:52:25 +0000 (08:52 +0000)]
main loop checks for all of ecore -> back. (removed by cedric last year)
SVN revision: 69727
Carsten Haitzler [Thu, 29 Mar 2012 08:43:11 +0000 (08:43 +0000)]
pur RAPI's on the .c file funcs.. TOO! so we can see which are api
calls and whats internal!
SVN revision: 69726
Carsten Haitzler [Thu, 29 Mar 2012 07:46:30 +0000 (07:46 +0000)]
add reg_get api for evas objects in order to help fix elm bug.
SVN revision: 69722
Carsten Haitzler [Thu, 29 Mar 2012 05:57:41 +0000 (05:57 +0000)]
* Fix range of issues with ecore_fb and even ecore_evas where
it didn't work right on the fb. (timestamps wrong, focus
handling etc.). This makes it work fully again.
SVN revision: 69715
Daniel Juyung Seo [Thu, 29 Mar 2012 05:09:58 +0000 (05:09 +0000)]
ecore Ecore.h: Fixed documentation typo.
SVN revision: 69713
Carsten Haitzler [Thu, 29 Mar 2012 03:15:36 +0000 (03:15 +0000)]
let's use ()'s to group our logic better?
SVN revision: 69712
Christopher Michael [Thu, 29 Mar 2012 01:28:28 +0000 (01:28 +0000)]
Ecore_Evas (wayland): Be sure to call 'iterate' if this is the first
initialize of ecore_wl (needed for running clients under the Weston
Compositor). Remove extra flush call when rendering.
SVN revision: 69708
Christopher Michael [Thu, 29 Mar 2012 01:26:30 +0000 (01:26 +0000)]
Ecore_Wayland: Add an API function which calls wl_display_iterate(readable).
Fix ecore_wl_window surface attach of the buffer for shm and egl types.
NB: This ensures that both efl/elm clients work under the Wayland
Compositor AND the E17 Compositor.
NB: The issue here is that clients (when run under the Wayland
compositor) need to make sure 'iterate' has
been called before creating surfaces so that the wl_compositor is
setup. However, the actual E17 Compositor will hang if 'iterate' is called
to early.
SVN revision: 69707
Christopher Michael [Wed, 28 Mar 2012 13:01:54 +0000 (13:01 +0000)]
Evas: Fix wayland_shm engine canvas_alpha return.
SVN revision: 69706
Cedric BAIL [Wed, 28 Mar 2012 12:58:50 +0000 (12:58 +0000)]
eina: plenty of place set EINA_CFLAGS before that line.
SVN revision: 69705
Jihoon Kim [Wed, 28 Mar 2012 11:03:11 +0000 (11:03 +0000)]
ecore_imf: remove NULL check prior to EINA_LIST_FREE
EINA_LIST_FREE checks whether its parameter is NULL or not
Thanks, Sebastian.
SVN revision: 69703
Daniel Juyung Seo [Wed, 28 Mar 2012 07:17:39 +0000 (07:17 +0000)]
evas evas_object_main.c: Revised code. Use EINA_TRUE/EINA_FALSE for Eina_Bool type variable.
SVN revision: 69693
Jihoon Kim [Wed, 28 Mar 2012 02:23:57 +0000 (02:23 +0000)]
ecore_imf: describe about Ecore IMF Context more detail
SVN revision: 69683
Christopher Michael [Tue, 27 Mar 2012 17:50:40 +0000 (17:50 +0000)]
Ecore_Wayland: Remove dependency on egl (handled in compositors).
Handle 'axis' events from multi-touch devices (also handles mouse
wheel).
Remove wl_buffer_damage calls (obsolete in newest wayland).
NB: This will require the 'latest' wayland code from their git repo as
of 2012-03-27.
SVN revision: 69672
Christopher Michael [Tue, 27 Mar 2012 15:15:21 +0000 (15:15 +0000)]
Ecore_Wayland: Add doxy & since for dpi function.
SVN revision: 69670
Jihoon Kim [Tue, 27 Mar 2012 09:05:00 +0000 (09:05 +0000)]
scim-immodule: fix bug candidate window covers the preedit string when preedit string appears in 2 line.
SVN revision: 69664
Jihoon Kim [Tue, 27 Mar 2012 08:58:35 +0000 (08:58 +0000)]
scim_imcontext.cpp: remove trailing whitespace
SVN revision: 69663
Christopher Michael [Tue, 27 Mar 2012 07:09:03 +0000 (07:09 +0000)]
Ecore: Fix botched merge of ChangeLog.
SVN revision: 69655
Christopher Michael [Tue, 27 Mar 2012 02:36:00 +0000 (02:36 +0000)]
Ecore: Update ChangeLog
SVN revision: 69647
Christopher Michael [Tue, 27 Mar 2012 02:18:40 +0000 (02:18 +0000)]
Ecore: Fix configure.ac detection of the egl library (needs version >=
7.10).
SVN revision: 69646
Christopher Michael [Tue, 27 Mar 2012 02:17:22 +0000 (02:17 +0000)]
Ecore_Evas (wayland):
- Add ecore_wl_sync to ecore_evas_wayland_* (needed for some
compositors).
- Implement ecore_evas_wayland_type_set (for setting window types).
- Implement ecore_evas_wayland_pointer_set (for setting pointer
hotspots).
- Fix ecore_evas_alpha/transparent set.
SVN revision: 69645
Christopher Michael [Tue, 27 Mar 2012 02:13:34 +0000 (02:13 +0000)]
Ecore_Wayland:
- Comment out display_iterate during intialize (hangs compositor
initialize).
- Simplify ecore_wl_flush routine and avoid possible hangs in
wl_display_roundtrip.
- Add function (for trip ;) ) to be able to return the screen dpi.
- Implement functions for input grab/ungrab.
- Set root.x/y in mouse events.
- Remove freeing of mouse_move event (already handled generically).
- Handle setting output mm width/height (for calc of dpi).
- Implement setting surface input & opaque regions.
- Implement popup windows.
- Implement ecore_wl_window_transparent_set function.
- Implement function to allow setting Ecore_Wl_Window type.
- Implement setting the wayland mouse pointer to an image (via
ecore_wl_window_pointer_set).
- Comment out wl_display_iterate during initialize (can cause hangs in
compositor).
- Simplify ecore_wl_flush (to avoid compositor hangs).
SVN revision: 69644
Vincent Torri [Mon, 26 Mar 2012 17:33:10 +0000 (17:33 +0000)]
Ecore_Win32/WinCE: also do not autorepeat the Win key
Patch by Shinwoo Kim
SVN revision: 69638
ChunEon Park [Mon, 26 Mar 2012 12:44:33 +0000 (12:44 +0000)]
edje - + NULL check
Signed-Off-By: ShilpaOnkar Singh(shilpa.singh@samsung.com)
SVN revision: 69637
ChunEon Park [Mon, 26 Mar 2012 11:00:25 +0000 (11:00 +0000)]
edje - + null checking.
SVN revision: 69635
Carsten Haitzler [Mon, 26 Mar 2012 10:56:55 +0000 (10:56 +0000)]
someone somewhere along the way broke evas_render_method_list(). FIX!
SVN revision: 69634
Jihoon Kim [Mon, 26 Mar 2012 08:31:05 +0000 (08:31 +0000)]
edje_entry.c: remove trailing whitespace
SVN revision: 69629
Vincent Torri [Mon, 26 Mar 2012 06:31:39 +0000 (06:31 +0000)]
Ecore_Win32/WinCE: do not autorepeat Ctrl, Shift and Alt keys
Patch by Shinwoo Kim
SVN revision: 69628
Carsten Haitzler [Mon, 26 Mar 2012 05:44:18 +0000 (05:44 +0000)]
evas changelog/news fixed/up to date
SVN revision: 69627
Carsten Haitzler [Mon, 26 Mar 2012 04:38:01 +0000 (04:38 +0000)]
eet changelog/news update/sync
SVN revision: 69626
Carsten Haitzler [Mon, 26 Mar 2012 04:33:56 +0000 (04:33 +0000)]
bring eina's NEWS up to date with changelog.
SVN revision: 69625
Vincent Torri [Sun, 25 Mar 2012 19:15:44 +0000 (19:15 +0000)]
Eio: autotools cleanup
SVN revision: 69619
Vincent Torri [Sun, 25 Mar 2012 18:43:21 +0000 (18:43 +0000)]
Emotion: Fix shm_open check + various autotools cleaning
This works in linux, and should fix shm_detection on BSD (including Mac)
BSD, Mac and solaris users : please check that it compiles and shm_open is detected
SVN revision: 69618
Vincent Torri [Sun, 25 Mar 2012 17:40:44 +0000 (17:40 +0000)]
Evas: fix static linking
SVN revision: 69617
Vincent Torri [Sun, 25 Mar 2012 17:25:04 +0000 (17:25 +0000)]
Ecore: fix shm_open() check (can be in libc or librt)
This works in linux and windows, and should fix shm_detection on BSD (including Mac)
BSD, Mac and solaris users : please check that it compiles and shm_open is detected
SVN revision: 69616
Vincent Torri [Sun, 25 Mar 2012 17:08:33 +0000 (17:08 +0000)]
fix dist
SVN revision: 69615
Vincent Torri [Sun, 25 Mar 2012 17:08:13 +0000 (17:08 +0000)]
fix dist
SVN revision: 69614
Vincent Torri [Sun, 25 Mar 2012 16:39:51 +0000 (16:39 +0000)]
better m4 macro
SVN revision: 69613
Vincent Torri [Sun, 25 Mar 2012 16:39:04 +0000 (16:39 +0000)]
Evas: fix shm_open() check (can be in libc or librt)
This works in linux and windows, and should fix shm_detection on BSD (including Mac)
BSD, Mac and solaris users : please check that it compiles and shm_open is detected
SVN revision: 69612
Vincent Torri [Sun, 25 Mar 2012 12:08:23 +0000 (12:08 +0000)]
whitespaces--
SVN revision: 69611
Vincent Torri [Sun, 25 Mar 2012 11:16:14 +0000 (11:16 +0000)]
and -lm in .pc
SVN revision: 69610
Vincent Torri [Sun, 25 Mar 2012 11:14:48 +0000 (11:14 +0000)]
didn't mean to commit that
SVN revision: 69609
Vincent Torri [Sun, 25 Mar 2012 11:12:32 +0000 (11:12 +0000)]
Eina: fix shm_open() check (can be in libc or librt) + various autotools cleaning
This works in linux and windows, and should fix shm_detection on BSD (including Mac)
BSD, Mac and solaris users : please check that it compiles and shm_open is detected
SVN revision: 69608
Daniel Juyung Seo [Sun, 25 Mar 2012 08:51:02 +0000 (08:51 +0000)]
eina eina_list.h: Fixed typo in the documentation.
SVN revision: 69605
Vincent Torri [Sat, 24 Mar 2012 18:57:21 +0000 (18:57 +0000)]
revert. gettext 0.18 is problematic on some platforms
SVN revision: 69602
Eric Schuele [Sat, 24 Mar 2012 15:48:38 +0000 (15:48 +0000)]
Bump gettext
SVN revision: 69600
Rafael Antognolli [Fri, 23 Mar 2012 20:18:22 +0000 (20:18 +0000)]
emotion/generic-vlc: Change playing position before start playing.
This will avoid that a video that reached its end starts playing from
that end when started again.
SVN revision: 69592
Rafael Antognolli [Fri, 23 Mar 2012 19:42:38 +0000 (19:42 +0000)]
emotion/generic-vlc: Don't try to stop the player from event thread.
Must send the command through the pipe so the main thread can stop it.
SVN revision: 69591
Jihoon Kim [Fri, 23 Mar 2012 09:23:46 +0000 (09:23 +0000)]
Ecore_X.h: musst -> must in doxygen
SVN revision: 69587
Jihoon Kim [Fri, 23 Mar 2012 08:37:13 +0000 (08:37 +0000)]
ecore_imf_context.c: fix typos in doxygen
SVN revision: 69586
Jihoon Kim [Fri, 23 Mar 2012 08:36:37 +0000 (08:36 +0000)]
Ecore_Evas.h: fix typos
SVN revision: 69585
Carsten Haitzler [Fri, 23 Mar 2012 06:49:42 +0000 (06:49 +0000)]
go back to the "old fashioned way" of doing yuv->rgb without matrix.
the matrix seems to screw up on too many gl drivers/implementations.
SVN revision: 69579
Jihoon Kim [Fri, 23 Mar 2012 05:44:46 +0000 (05:44 +0000)]
Ecore.h: fix typos
SVN revision: 69578
Jihoon Kim [Fri, 23 Mar 2012 03:46:36 +0000 (03:46 +0000)]
Edje.h: fix some typos
SVN revision: 69574
Jonas M. Gastal [Thu, 22 Mar 2012 16:57:16 +0000 (16:57 +0000)]
Those are not currently implemented, so documenting them is confusing to
users.
SVN revision: 69568
Jihoon Kim [Thu, 22 Mar 2012 14:47:18 +0000 (14:47 +0000)]
Evas.h: fix other typos
SVN revision: 69567
Jihoon Kim [Thu, 22 Mar 2012 13:32:34 +0000 (13:32 +0000)]
Evas.h: fix some typos
SVN revision: 69566
Bruno Dilly [Thu, 22 Mar 2012 12:01:55 +0000 (12:01 +0000)]
Emotion Generic: pass on when ecore event data cb fails
SVN revision: 69565
Vikram Narayanan [Thu, 22 Mar 2012 06:01:59 +0000 (06:01 +0000)]
From: Vikram Narayanan <vikram186@gmail.com>
Subject: [E-devel] [PATCH] ecore/ecore_fb: Tweaks in _ecore_fb_size_get
As the width and height are defined as static, no need to initialize it
again to zero. Also removed checks for 'valid pointers' as it is redundant.
SVN revision: 69556
Jonas M. Gastal [Wed, 21 Mar 2012 14:21:14 +0000 (14:21 +0000)]
Move main page example from comments to files.
SVN revision: 69541
Jonas M. Gastal [Wed, 21 Mar 2012 14:14:50 +0000 (14:14 +0000)]
Ecore FD handler docs.
SVN revision: 69540
Jérôme Pinot [Wed, 21 Mar 2012 11:54:28 +0000 (11:54 +0000)]
From: Jérôme Pinot <ngc891@gmail.com>
Subject: [E-devel] [patch] evas doc typos
3 typos in evas doc.
SVN revision: 69539
Carsten Haitzler [Wed, 21 Mar 2012 04:04:03 +0000 (04:04 +0000)]
fix map overdraw issue that has snuck in during development
SVN revision: 69534
Vincent Torri [Tue, 20 Mar 2012 22:57:05 +0000 (22:57 +0000)]
and fix ecore_evas...
SVN revision: 69528
Vincent Torri [Tue, 20 Mar 2012 22:44:21 +0000 (22:44 +0000)]
Ecore: fix compilation
SVN revision: 69527
Carsten Haitzler [Tue, 20 Mar 2012 09:16:29 +0000 (09:16 +0000)]
thanks herome - i was trying to fix a distcheck issue - but as such
distcheck does other bad/evil things here than this kind of thing
doesnt work with.
SVN revision: 69524
Carsten Haitzler [Tue, 20 Mar 2012 08:08:42 +0000 (08:08 +0000)]
make sure we clean temporary objects - make some notes too.
SVN revision: 69522
Vincent Torri [Tue, 20 Mar 2012 04:35:18 +0000 (04:35 +0000)]
Ecore: add ecore_wince_window_focus_get() and ecore_win32_window_focus_get()
SVN revision: 69514
Vincent Torri [Tue, 20 Mar 2012 04:09:51 +0000 (04:09 +0000)]
Ecore: rename ecore_win32_focus_set() to ecore_win32_focus() and add ecore_wince_focus()
SVN revision: 69513
Vincent Torri [Mon, 19 Mar 2012 19:31:29 +0000 (19:31 +0000)]
Eina: Fix a previous commit
SVN revision: 69511
Carsten Haitzler [Mon, 19 Mar 2012 06:18:44 +0000 (06:18 +0000)]
fix up missing LKI/LKD which was still pthread. hurts windows port due
to using eina_lock there.
SVN revision: 69498
Carsten Haitzler [Sun, 18 Mar 2012 01:46:28 +0000 (01:46 +0000)]
add 2 interesting chlogs to embryo
SVN revision: 69490
Jihoon Kim [Sat, 17 Mar 2012 10:44:04 +0000 (10:44 +0000)]
ecore_imf: add free memory code in ecore_imf_context_preedit_string_with_attributes_get example
SVN revision: 69487
Carsten Haitzler [Sat, 17 Mar 2012 06:25:41 +0000 (06:25 +0000)]
and work more on getting release in shape - version requirements.
(god this is a pain in the butt)
SVN revision: 69484
Vincent Torri [Sat, 17 Mar 2012 05:42:47 +0000 (05:42 +0000)]
missing flags
SVN revision: 69483
Carsten Haitzler [Sat, 17 Mar 2012 05:37:25 +0000 (05:37 +0000)]
add back in libs.private/requires to pc files with some fixes for
missing.
SVN revision: 69482
Carsten Haitzler [Sat, 17 Mar 2012 04:17:29 +0000 (04:17 +0000)]
gear up svn for release. one of many steps/things to do.
SVN revision: 69481
Cedric BAIL [Fri, 16 Mar 2012 15:02:01 +0000 (15:02 +0000)]
evas: print error instead of only silently preventing bad things to happen.
SVN revision: 69460
Cedric BAIL [Fri, 16 Mar 2012 11:26:23 +0000 (11:26 +0000)]
eina: update AUTHORS.
SVN revision: 69457
Cedric BAIL [Fri, 16 Mar 2012 11:25:14 +0000 (11:25 +0000)]
eina: fix build when valgrind is not in a standard location.
Patch by Raphael Kubo da Costa <rakuco@freebsd.org>.
SVN revision: 69456
Jihoon Kim [Fri, 16 Mar 2012 06:44:54 +0000 (06:44 +0000)]
ecore_imf_evas: add example code in doxygen
SVN revision: 69450
Jihoon Kim [Fri, 16 Mar 2012 06:44:05 +0000 (06:44 +0000)]
ecore_imf: add example code in doxygen
SVN revision: 69449