From 70622f2b982201e090b9560019930e7ca5be2eb4 Mon Sep 17 00:00:00 2001 From: Eduardo de Barros Lima Date: Mon, 17 Dec 2012 19:57:11 +0000 Subject: [PATCH] Fix documentation SVN revision: 81181 --- legacy/edje/src/lib/Edje.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/legacy/edje/src/lib/Edje.h b/legacy/edje/src/lib/Edje.h index 36572dd780..4d51404fb8 100644 --- a/legacy/edje/src/lib/Edje.h +++ b/legacy/edje/src/lib/Edje.h @@ -6423,7 +6423,7 @@ typedef struct _Edje_Message_String_Float_Set Edje_Message_String_Float_Set; struct _Edje_Message_String { char *str; /**< The message's string pointer */ -}; /**< Structure passed as value on #EDJE_MESSAGE_STRING messages. The string in it is automatically freed be Edje if passed to you by Edje */ +}; /**< Structure passed as value on #EDJE_MESSAGE_STRING messages. The string in it is automatically freed Edje if passed to you by Edje */ struct _Edje_Message_Int { @@ -6439,45 +6439,45 @@ struct _Edje_Message_String_Set { int count; /**< The size of the message's array (may be greater than 1) */ char *str[1]; /**< The message's @b array of string pointers */ -}; /**< Structure passed as value on #EDJE_MESSAGE_STRING_SET messages. The array in it is automatically freed be Edje if passed to you by Edje */ +}; /**< Structure passed as value on #EDJE_MESSAGE_STRING_SET messages. The array in it is automatically freed if passed to you by Edje */ struct _Edje_Message_Int_Set { int count; /**< The size of the message's array (may be greater than 1) */ int val[1]; /**< The message's @b array of integers */ -}; /**< Structure passed as value on #EDJE_MESSAGE_INT_SET messages. The array in it is automatically freed be Edje if passed to you by Edje */ +}; /**< Structure passed as value on #EDJE_MESSAGE_INT_SET messages. The array in it is automatically freed if passed to you by Edje */ struct _Edje_Message_Float_Set { int count; /**< The size of the message's array (may be greater than 1) */ double val[1]; /**< The message's @b array of floats */ -}; /**< Structure passed as value on #EDJE_MESSAGE_FLOAT_SET messages. The array in it is automatically freed be Edje if passed to you by Edje */ +}; /**< Structure passed as value on #EDJE_MESSAGE_FLOAT_SET messages. The array in it is automatically freed if passed to you by Edje */ struct _Edje_Message_String_Int { char *str; /**< The message's string value */ int val; /**< The message's integer value */ -}; /**< Structure passed as value on #EDJE_MESSAGE_STRING_INT messages. The string in it is automatically freed be Edje if passed to you by Edje */ +}; /**< Structure passed as value on #EDJE_MESSAGE_STRING_INT messages. The string in it is automatically freed if passed to you by Edje */ struct _Edje_Message_String_Float { char *str; /**< The message's string value */ double val; /**< The message's float value */ -}; /**< Structure passed as value on #EDJE_MESSAGE_STRING_FLOAT messages. The string in it is automatically freed be Edje if passed to you by Edje */ +}; /**< Structure passed as value on #EDJE_MESSAGE_STRING_FLOAT messages. The string in it is automatically freed if passed to you by Edje */ struct _Edje_Message_String_Int_Set { char *str; /**< The message's string value */ int count; /**< The size of the message's array (may be greater than 1) */ int val[1]; /**< The message's @b array of integers */ -}; /**< Structure passed as value on #EDJE_MESSAGE_STRING_INT_SET messages. The array and string in it are automatically freed be Edje if passed to you by Edje */ +}; /**< Structure passed as value on #EDJE_MESSAGE_STRING_INT_SET messages. The array and string in it are automatically freed if passed to you by Edje */ struct _Edje_Message_String_Float_Set { char *str; /**< The message's string value */ int count; /**< The size of the message's array (may be greater than 1) */ double val[1]; /**< The message's @b array of floats */ -}; /**< Structure passed as value on #EDJE_MESSAGE_STRING_FLOAT_SET messages. The array and string in it are automatically freed be Edje if passed to you by Edje */ +}; /**< Structure passed as value on #EDJE_MESSAGE_STRING_FLOAT_SET messages. The array and string in it are automatically freed if passed to you by Edje */ typedef void (*Edje_Message_Handler_Cb) (void *data, Evas_Object *obj, Edje_Message_Type type, int id, void *msg); /**< Edje message handler callback functions's prototype definition. @c data will have the auxiliary data pointer set at the time the callback registration. @c obj will be a pointer the Edje object where the message comes from. @c type will identify the type of the given message and @c msg will be a pointer the message's contents, de facto, which depend on @c type. */