elm: fixed up the comments after the struct member.

It should be /**< not /*<<
This commit is contained in:
Daniel Juyung Seo 2014-02-10 22:27:08 +09:00
parent 2f2741f981
commit 192a9e80e7
7 changed files with 15 additions and 15 deletions

View File

@ -22,6 +22,6 @@ typedef enum
ELM_FILESELECTOR_SORT_LAST /**< sentinel (helper) value, not used */
} Elm_Fileselector_Sort;
typedef Eina_Bool (*Elm_Fileselector_Filter_Func)(const char *path, /*<< File path */
Eina_Bool dir, /*<< A flag to show if path is a directory or not. True if the path is a directory. */
void *data /*<< A user data that was given by elm_fileselector_custom_filter_append. */);
typedef Eina_Bool (*Elm_Fileselector_Filter_Func)(const char *path, /**< File path */
Eina_Bool dir, /**< A flag to show if path is a directory or not. True if the path is a directory. */
void *data /**< A user data that was given by elm_fileselector_custom_filter_append. */);

View File

@ -435,8 +435,8 @@ typedef struct _Elm_Widget_Smart_Data
Eina_Bool still_in : 1;
Eina_Bool highlighted : 1;
Eina_Bool highlight_root : 1;
Eina_Bool on_translate : 1; /*<< This is true when any types of elm translate function is being called. */
Eina_Bool on_create : 1; /*<< This is true when the widget is on creation(general widget constructor). */
Eina_Bool on_translate : 1; /**< This is true when any types of elm translate function is being called. */
Eina_Bool on_create : 1; /**< This is true when the widget is on creation(general widget constructor). */
} Elm_Widget_Smart_Data;
/**

View File

@ -20,7 +20,7 @@
typedef struct _Elm_Index_Smart_Data Elm_Index_Smart_Data;
struct _Elm_Index_Smart_Data
{
Evas_Object *event_rect[2]; /*<< rectangle objects for event handling */
Evas_Object *event_rect[2]; /**< rectangle objects for event handling */
Evas_Object *bx[2]; // 2 - for now all that's supported
Eina_List *items; /* 1 list. N levels, but only 2
* for now and # of items will be

View File

@ -58,8 +58,8 @@ struct _Elm_Naviframe_Item
Eina_Bool title_enabled : 1;
Eina_Bool unfocusable : 1;
Eina_Bool popping : 1; /*<< a flag to notify the item is on poping. this flag is set true at the start of item pop. */
Eina_Bool delete_me : 1; /*<< a flag to notify the item is on deletion. this flag is set true at the start of item deletion. */
Eina_Bool popping : 1; /**< a flag to notify the item is on poping. this flag is set true at the start of item pop. */
Eina_Bool delete_me : 1; /**< a flag to notify the item is on deletion. this flag is set true at the start of item deletion. */
};
typedef struct _Elm_Naviframe_Content_Item_Pair Elm_Naviframe_Content_Item_Pair;

View File

@ -35,7 +35,7 @@ struct _Elm_Photo_Smart_Data
} thumb;
Eina_Bool fill_inside: 1;
Eina_Bool drag_started: 1; /*<< set true when drag started */
Eina_Bool drag_started: 1; /**< set true when drag started */
};
/**

View File

@ -25,14 +25,14 @@ struct _Elm_Spinner_Smart_Data
Evas_Object *ent;
const char *label;
double val, val_min, val_max, val_base;
double step; /*<< step for the value change. 1 by default. */
double drag_start_val; /*<< spinner value on drag start.
double step; /**< step for the value change. 1 by default. */
double drag_start_val; /**< spinner value on drag start.
this is reset to 0 when drag stops. */
double spin_speed, interval, first_interval;
int round;
Ecore_Timer *delay_change_timer; /*<< a timer for a delay,changed smart callback */
Ecore_Timer *spin_timer; /*<< a timer for a repeated spinner value change on mouse down */
Ecore_Timer *longpress_timer; /*<< a timer to detect long press. After lonpress timeout,
Ecore_Timer *delay_change_timer; /**< a timer for a delay,changed smart callback */
Ecore_Timer *spin_timer; /**< a timer for a repeated spinner value change on mouse down */
Ecore_Timer *longpress_timer; /**< a timer to detect long press. After lonpress timeout,
start continuous change of values until mouse up */
Eina_List *special_values;

View File

@ -118,7 +118,7 @@ struct _Elm_Win_Smart_Data
{
Evas_Object *target;
Eina_Bool visible : 1;
Eina_Bool in_theme: 1; /*<< focus highlight is handled by theme.
Eina_Bool in_theme: 1; /**< focus highlight is handled by theme.
this is set true if edc data item "focus_highlight" is set to "on" during focus in callback. */
} cur, prev;