seoz pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=39cc70ac457aeb0e55f5d5e392449367231840f5

commit 39cc70ac457aeb0e55f5d5e392449367231840f5
Author: Daniel Juyung Seo <seojuyu...@gmail.com>
Date:   Mon Feb 10 22:27:08 2014 +0900

    elm: fixed up the comments after the struct member.
    
    It should be /**< not /*<<
---
 src/lib/elc_fileselector_common.h |  6 +++---
 src/lib/elm_widget.h              |  4 ++--
 src/lib/elm_widget_index.h        |  2 +-
 src/lib/elm_widget_naviframe.h    |  4 ++--
 src/lib/elm_widget_photo.h        |  2 +-
 src/lib/elm_widget_spinner.h      | 10 +++++-----
 src/lib/elm_win.c                 |  2 +-
 7 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/src/lib/elc_fileselector_common.h 
b/src/lib/elc_fileselector_common.h
index 5c22fd9..9c5bd87 100644
--- a/src/lib/elc_fileselector_common.h
+++ b/src/lib/elc_fileselector_common.h
@@ -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. */);
diff --git a/src/lib/elm_widget.h b/src/lib/elm_widget.h
index b1d3172..2e39097 100644
--- a/src/lib/elm_widget.h
+++ b/src/lib/elm_widget.h
@@ -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;
 
 /**
diff --git a/src/lib/elm_widget_index.h b/src/lib/elm_widget_index.h
index 5189c18..1511600 100644
--- a/src/lib/elm_widget_index.h
+++ b/src/lib/elm_widget_index.h
@@ -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
diff --git a/src/lib/elm_widget_naviframe.h b/src/lib/elm_widget_naviframe.h
index 1b347da..f4b8019 100644
--- a/src/lib/elm_widget_naviframe.h
+++ b/src/lib/elm_widget_naviframe.h
@@ -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;
diff --git a/src/lib/elm_widget_photo.h b/src/lib/elm_widget_photo.h
index ba3c015..3009328 100644
--- a/src/lib/elm_widget_photo.h
+++ b/src/lib/elm_widget_photo.h
@@ -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 */
 };
 
 /**
diff --git a/src/lib/elm_widget_spinner.h b/src/lib/elm_widget_spinner.h
index 0e9c308..1c31bdc 100644
--- a/src/lib/elm_widget_spinner.h
+++ b/src/lib/elm_widget_spinner.h
@@ -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;
 
diff --git a/src/lib/elm_win.c b/src/lib/elm_win.c
index 5ab15bd..9392700 100644
--- a/src/lib/elm_win.c
+++ b/src/lib/elm_win.c
@@ -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;
 

-- 


Reply via email to