From 87b422c93a4f9ac6a58809bd78040de849ea4039 Mon Sep 17 00:00:00 2001 From: Gustavo Lima Chaves Date: Fri, 25 May 2012 19:53:51 +0000 Subject: [PATCH] [elm] Small fixes on class headers. SVN revision: 71428 --- legacy/elementary/src/lib/elm_layout.h | 2 ++ legacy/elementary/src/lib/elm_widget_button.h | 6 +++--- legacy/elementary/src/lib/elm_widget_container.h | 11 +++-------- legacy/elementary/src/lib/elm_widget_layout.h | 2 +- 4 files changed, 9 insertions(+), 12 deletions(-) diff --git a/legacy/elementary/src/lib/elm_layout.h b/legacy/elementary/src/lib/elm_layout.h index dfc9f17bae..836cf6b708 100644 --- a/legacy/elementary/src/lib/elm_layout.h +++ b/legacy/elementary/src/lib/elm_layout.h @@ -8,6 +8,8 @@ * @image html img/layout-predefined.png * @image latex img/layout-predefined.eps width=\textwidth * + * A Layout is a direct realization of @ref elm-layout-class. + * * This is a container widget that takes a standard Edje design file and * wraps it very thinly in a widget. * diff --git a/legacy/elementary/src/lib/elm_widget_button.h b/legacy/elementary/src/lib/elm_widget_button.h index d120e2e30c..ede9140507 100644 --- a/legacy/elementary/src/lib/elm_widget_button.h +++ b/legacy/elementary/src/lib/elm_widget_button.h @@ -21,7 +21,7 @@ * Use this macro to cast whichever subclass of * #Elm_Button_Smart_Class into it, so to acess its fields. * - * @ingroup Button + * @ingroup Widget */ #define ELM_BUTTON_CLASS(x) ((Elm_Button_Smart_Class *) x) @@ -31,7 +31,7 @@ * Use this macro to cast whichever subdata of * #Elm_Button_Smart_Data into it, so to acess its fields. * - * @ingroup Button + * @ingroup Widget */ #define ELM_BUTTON_DATA(x) ((Elm_Button_Smart_Data *) x) @@ -118,7 +118,7 @@ typedef struct _Elm_Button_Smart_Class } Elm_Button_Smart_Class; /** - * Base widget smart data extended with button widget data. + * Base widget smart data extended with button instance data. */ typedef struct _Elm_Button_Smart_Data { diff --git a/legacy/elementary/src/lib/elm_widget_container.h b/legacy/elementary/src/lib/elm_widget_container.h index c0ba21e143..18e18e1d3c 100644 --- a/legacy/elementary/src/lib/elm_widget_container.h +++ b/legacy/elementary/src/lib/elm_widget_container.h @@ -31,7 +31,7 @@ * Use this macro to cast whichever subclass of * #Elm_Container_Smart_Class into it, so to acess its fields. * - * @ingroup Container + * @ingroup Widget */ #define ELM_CONTAINER_CLASS(x) ((Elm_Container_Smart_Class *) x) @@ -102,13 +102,8 @@ /** * Elementary container base smart class. This inherits directly from - * #Elm_Widget_Smart_Class and is meant to build widgets relying on an - * Edje container as a building block of its visuals. - * - * For instance, the elm_container @b widget itself is just a realization - * of this smart class (see the code for elm_container_add()). All of the - * functions listed on @ref Container namespace will work for objects - * deriving from #Elm_Container_Smart_Class. + * #Elm_Widget_Smart_Class and is meant to build widgets exposing + * "parts" to hold child elements at. */ typedef struct _Elm_Container_Smart_Class diff --git a/legacy/elementary/src/lib/elm_widget_layout.h b/legacy/elementary/src/lib/elm_widget_layout.h index 2b14c18efc..bddf1651ee 100644 --- a/legacy/elementary/src/lib/elm_widget_layout.h +++ b/legacy/elementary/src/lib/elm_widget_layout.h @@ -234,7 +234,7 @@ typedef struct _Elm_Layout_Smart_Class } Elm_Layout_Smart_Class; /** - * Base widget smart data extended with layout widget data. + * Base widget smart data extended with layout instance data. */ typedef struct _Elm_Layout_Smart_Data {