diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2010-09-26 05:42:56 +0000 |
---|---|---|
committer | Vincent Torri <vincent.torri@gmail.com> | 2010-09-26 05:42:56 +0000 |
commit | fbdfa54f829735380d4d01238b08ae4d7cc5af46 (patch) | |
tree | 852cb493af5cf2fc4c0ef8429b7859f87b83a4fb /legacy/ecore/src/lib/ecore_imf/ecore_imf_private.h | |
parent | d1a1b62fa84dff76b62b44b473d12899b1041914 (diff) |
int --> Eina_Bool
SVN revision: 52773
Diffstat (limited to 'legacy/ecore/src/lib/ecore_imf/ecore_imf_private.h')
-rw-r--r-- | legacy/ecore/src/lib/ecore_imf/ecore_imf_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/legacy/ecore/src/lib/ecore_imf/ecore_imf_private.h b/legacy/ecore/src/lib/ecore_imf/ecore_imf_private.h index 23b8301abc..0d31618d9e 100644 --- a/legacy/ecore/src/lib/ecore_imf/ecore_imf_private.h +++ b/legacy/ecore/src/lib/ecore_imf/ecore_imf_private.h | |||
@@ -43,7 +43,7 @@ struct _Ecore_IMF_Context | |||
43 | const Ecore_IMF_Context_Class *klass; | 43 | const Ecore_IMF_Context_Class *klass; |
44 | void *data; | 44 | void *data; |
45 | int input_mode; | 45 | int input_mode; |
46 | int (*retrieve_surrounding_func)(void *data, Ecore_IMF_Context *ctx, char **text, int *cursor_pos); | 46 | Eina_Bool (*retrieve_surrounding_func)(void *data, Ecore_IMF_Context *ctx, char **text, int *cursor_pos); |
47 | void *retrieve_surrounding_data; | 47 | void *retrieve_surrounding_data; |
48 | }; | 48 | }; |
49 | 49 | ||