[docs] Add annotations for ClutterText structures

ClutterText and ClutterTextClass were missing annotations for
gtk-doc to pick up.
This commit is contained in:
Emmanuele Bassi 2008-12-15 15:10:55 +00:00
parent 39b575e6b4
commit 2d166b250c

View File

@ -45,6 +45,13 @@ typedef struct _ClutterText ClutterText;
typedef struct _ClutterTextPrivate ClutterTextPrivate;
typedef struct _ClutterTextClass ClutterTextClass;
/**
* ClutterText:
*
* The #ClutterText struct contains only private data.
*
* Since: 1.0
*/
struct _ClutterText
{
/*< private >*/
@ -53,6 +60,16 @@ struct _ClutterText
ClutterTextPrivate *priv;
};
/**
* ClutterTextClass:
* @text_changed: class handler for the #ClutterText::text-changed signal
* @activate: class handler for the #ClutterText::activate signal
* @cursor_event: class handler for the #ClutterText::cursor_event signal
*
* The #ClutterTextClass struct contains only private data.
*
* Since: 1.0
*/
struct _ClutterTextClass
{
/*< private >*/