fix docs to not confuse onefang... :)
authorraster <raster@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sat, 19 Nov 2011 04:08:55 +0000 (04:08 +0000)
committerraster <raster@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sat, 19 Nov 2011 04:08:55 +0000 (04:08 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@65401 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/Edje.h

index 3a8cc0b..c8094b4 100644 (file)
@@ -671,7 +671,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 */
+}; /**< Structure passed as value on #EDJE_MESSAGE_STRING messages. The string in it is automatically freed be Edje if passed to you by Edje */
 
 struct _Edje_Message_Int
 {
@@ -687,45 +687,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 */
+}; /**< 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 */
 
 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 */
+}; /**< 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 */
 
 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 */
+}; /**< 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 */
 
 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 */
+}; /**< 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 */
 
 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 */
+}; /**< 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 */
 
 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 */
+}; /**< 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 */
 
 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 */
+}; /**< 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 */
 
 typedef enum _Edje_Drag_Dir
 {