diff options
author | Xavi Artigas <xavierartigas@yahoo.es> | 2020-02-28 11:01:03 +0100 |
---|---|---|
committer | Xavi Artigas <xavierartigas@yahoo.es> | 2020-02-28 11:44:19 +0100 |
commit | dc9750ae1ce8d570a859f1a8a6040176033e833b (patch) | |
tree | 9739d87b3dcb083e6fd58c14ea416492adad266a | |
parent | ddbe32f2eb5ddae536676e454f7ea95a3885ae6e (diff) |
doxygen: remove duplicated sections
Unified widgets simply copied elm's headers, duplicating doxygen sections.
-rw-r--r-- | src/lib/elementary/efl_ui_calendar_private.h | 15 | ||||
-rw-r--r-- | src/lib/elementary/efl_ui_panel_private.h | 15 |
2 files changed, 0 insertions, 30 deletions
diff --git a/src/lib/elementary/efl_ui_calendar_private.h b/src/lib/elementary/efl_ui_calendar_private.h index 3d80b89305..9ee17465e3 100644 --- a/src/lib/elementary/efl_ui_calendar_private.h +++ b/src/lib/elementary/efl_ui_calendar_private.h | |||
@@ -10,17 +10,6 @@ | |||
10 | */ | 10 | */ |
11 | 11 | ||
12 | /** | 12 | /** |
13 | * @addtogroup Widget | ||
14 | * @{ | ||
15 | * | ||
16 | * @section elm-calendar-class The Elementary Calendar Class | ||
17 | * | ||
18 | * Elementary, besides having the @ref Calendar widget, exposes its | ||
19 | * foundation -- the Elementary Calendar Class -- in order to create other | ||
20 | * widgets which are a calendar with some more logic on top. | ||
21 | */ | ||
22 | |||
23 | /** | ||
24 | * Base layout smart data extended with calendar instance data. | 13 | * Base layout smart data extended with calendar instance data. |
25 | */ | 14 | */ |
26 | typedef struct _Efl_Ui_Calendar_Data Efl_Ui_Calendar_Data; | 15 | typedef struct _Efl_Ui_Calendar_Data Efl_Ui_Calendar_Data; |
@@ -47,10 +36,6 @@ struct _Efl_Ui_Calendar_Data | |||
47 | Eina_Bool weekdays_set : 1; | 36 | Eina_Bool weekdays_set : 1; |
48 | }; | 37 | }; |
49 | 38 | ||
50 | /** | ||
51 | * @} | ||
52 | */ | ||
53 | |||
54 | #define EFL_UI_CALENDAR_DATA_GET(o, sd) \ | 39 | #define EFL_UI_CALENDAR_DATA_GET(o, sd) \ |
55 | Efl_Ui_Calendar_Data * sd = efl_data_scope_get(o, EFL_UI_CALENDAR_CLASS) | 40 | Efl_Ui_Calendar_Data * sd = efl_data_scope_get(o, EFL_UI_CALENDAR_CLASS) |
56 | 41 | ||
diff --git a/src/lib/elementary/efl_ui_panel_private.h b/src/lib/elementary/efl_ui_panel_private.h index f1c3b93ae5..0e844181a1 100644 --- a/src/lib/elementary/efl_ui_panel_private.h +++ b/src/lib/elementary/efl_ui_panel_private.h | |||
@@ -12,17 +12,6 @@ | |||
12 | */ | 12 | */ |
13 | 13 | ||
14 | /** | 14 | /** |
15 | * @addtogroup Widget | ||
16 | * @{ | ||
17 | * | ||
18 | * @section elm-panel-class The Elementary Panel Class | ||
19 | * | ||
20 | * Elementary, besides having the @ref Panel widget, exposes its | ||
21 | * foundation -- the Elementary Panel Class -- in order to create other | ||
22 | * widgets which are a panel with some more logic on top. | ||
23 | */ | ||
24 | |||
25 | /** | ||
26 | * Base layout smart data extended with panel instance data. | 15 | * Base layout smart data extended with panel instance data. |
27 | */ | 16 | */ |
28 | typedef struct _Efl_Ui_Panel_Data Efl_Ui_Panel_Data; | 17 | typedef struct _Efl_Ui_Panel_Data Efl_Ui_Panel_Data; |
@@ -50,10 +39,6 @@ struct _Efl_Ui_Panel_Data | |||
50 | Eina_Bool callback_added: 1; | 39 | Eina_Bool callback_added: 1; |
51 | }; | 40 | }; |
52 | 41 | ||
53 | /** | ||
54 | * @} | ||
55 | */ | ||
56 | |||
57 | #define EFL_UI_PANEL_DATA_GET(o, sd) \ | 42 | #define EFL_UI_PANEL_DATA_GET(o, sd) \ |
58 | Efl_Ui_Panel_Data * sd = efl_data_scope_get(o, EFL_UI_PANEL_CLASS) | 43 | Efl_Ui_Panel_Data * sd = efl_data_scope_get(o, EFL_UI_PANEL_CLASS) |
59 | 44 | ||