elementary - trivial change.
authorChunEon Park <hermet@hermet.pe.kr>
Wed, 6 Mar 2013 12:50:14 +0000 (21:50 +0900)
committerChunEon Park <hermet@hermet.pe.kr>
Wed, 6 Mar 2013 12:50:14 +0000 (21:50 +0900)
legacy/elementary/src/lib/elm_general.h
legacy/elementary/src/lib/elm_object.h
legacy/elementary/src/lib/elm_object_item.h

index 620ceb7..b87481b 100644 (file)
@@ -115,13 +115,6 @@ typedef enum
    ELM_OBJECT_SELECT_MODE_MAX
 } Elm_Object_Select_Mode;
 
-/**
- * @typedef Elm_Object_Item
- * An Elementary Object item handle.
- * @ingroup General
- */
-typedef struct _Elm_Object_Item Elm_Object_Item;
-
 typedef Eina_Bool             (*Elm_Event_Cb)(void *data, Evas_Object *obj, Evas_Object *src, Evas_Callback_Type type, void *event_info); /**< Function prototype definition for callbacks on input events happening on Elementary widgets. @a data will receive the user data pointer passed to elm_object_event_callback_add(). @a src will be a pointer to the widget on which the input event took place. @a type will get the type of this event and @a event_info, the struct with details on this event. */
 
 #ifndef ELM_LIB_QUICKLAUNCH
index 0ffd44a..377ec42 100644 (file)
@@ -234,7 +234,7 @@ EAPI const char  *elm_object_style_get(const Evas_Object *obj);
  * This sets the state for the widget, either disabling it or
  * enabling it back.
  *
- * @ingroup Styles
+ * @ingroup General 
  */
 EAPI void         elm_object_disabled_set(Evas_Object *obj, Eina_Bool disabled);
 
@@ -247,7 +247,7 @@ EAPI void         elm_object_disabled_set(Evas_Object *obj, Eina_Bool disabled);
  *
  * This gets the state of the widget, which might be enabled or disabled.
  *
- * @ingroup Styles
+ * @ingroup General
  */
 EAPI Eina_Bool    elm_object_disabled_get(const Evas_Object *obj);
 
index f4d29e9..6b98583 100644 (file)
@@ -1,4 +1,11 @@
 /**
+ * @typedef Elm_Object_Item
+ * An Elementary Object item handle.
+ * @ingroup General
+ */
+typedef struct _Elm_Object_Item Elm_Object_Item;
+
+/**
  * @typedef Elm_Object_Item_Signal_Cb
  *
  * Elm_Object_Item Signal Callback functions' prototype definition. @c data
@@ -9,6 +16,8 @@
  *
  * @see elm_object_item_signal_callback_add()
  * @since 1.8
+ *
+ * @ingroup General
  */
 typedef void                  (*Elm_Object_Item_Signal_Cb)(void *data, Elm_Object_Item *it, const char *emission, const char *source);